datum-core 0.9.0

Rust stream-processing library mirroring Akka/Pekko Streams Typed, built on Ractor actors
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
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
use std::{
    collections::{HashMap, VecDeque},
    hint,
    marker::PhantomData,
    sync::{
        Arc, Condvar, Mutex, MutexGuard,
        atomic::{AtomicBool, AtomicU8, AtomicU64, AtomicUsize, Ordering, fence},
        mpsc,
    },
    thread,
    time::Duration,
};

use arc_swap::{ArcSwap, ArcSwapOption};
use ractor::{Actor, ActorProcessingErr, ActorRef};
use tokio::sync::Notify;

use crate::{
    StreamError, StreamResult,
    actor::block_on_ractor_runtime,
    stream::{BoxStream, NotUsed, Source, current_stream_cancelled},
};

const SLOT_WAIT_BACKSTOP: Duration = Duration::from_millis(10);
const SUBSCRIPTION_DRAIN_BATCH: usize = 256;
const STATE_OPEN: u8 = 0;
const STATE_CLOSING: u8 = 1;
const STATE_CLOSED: u8 = 2;
const UNSEEDED_CURSOR: u64 = u64::MAX;
const NO_DROP_FROM: u64 = u64::MAX;
const NO_TERMINAL_FROM: u64 = u64::MAX;

type Ack = mpsc::Sender<StreamResult<()>>;

/// Overflow policy for a [`Subscription`] subscriber buffer.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SubscriptionOverflow {
    /// Preserve every change by parking the producer on the caller thread until every active
    /// subscriber cursor has ring capacity. No actor handler waits for data-plane backpressure.
    Backpressure,
    /// Apply the state transition, but mark the new feed item as dropped for subscribers whose
    /// logical cursor is full. This is not lossless for slow subscribers and is intended only when
    /// dropping is an explicit part of the chosen contract.
    DropNew,
    /// Apply the state transition, fail subscribers whose logical cursor is full after they drain
    /// already-accepted items, and return an error to the acknowledged producer.
    Fail,
}

/// Latest-value state cell with a bounded every-change feed.
///
/// `Subscription` uses a two-plane implementation. The Ractor actor owns only subscribe,
/// unsubscribe, close, terminal delivery, and the registry that is periodically published as an
/// `ArcSwap` slot-table snapshot. State transitions run on the caller thread.
///
/// The lossless data plane is a sequence-claimed ring: each writer claims a global sequence,
/// waits for its publish turn, writes the ring slot, stores the `ArcSwap` mirror, publishes an
/// internal `(sequence, value)` snapshot, wakes current subscribers, and then returns. Under
/// [`SubscriptionOverflow::Backpressure`], producers wait outside the actor while any active
/// subscriber cursor would lag past the logical capacity. Subscribers consume by cursor in total
/// sequence order, so they see no gaps or duplicates.
///
/// Subscribe has no actor-serialized-set gap. The control actor first publishes the new
/// slot-table snapshot, then seeds the slot from the current published `(sequence, value)` and sets
/// the cursor to `sequence + 1`; any writer that races after registration is either represented by
/// the seed or consumed from the ring.
///
/// `update` uses `ArcSwap::compare_and_swap` under the write publication turn. The update function
/// may be re-invoked if a concurrent writer wins the CAS race, matching the usual Ref/atomic
/// update contract.
pub struct Subscription<T: Send + Sync + 'static> {
    inner: Arc<SubscriptionInner<T>>,
}

struct SubscriptionInner<T: Send + Sync + 'static> {
    actor: ActorRef<SubscriptionMessage<T>>,
    shared: Arc<SubscriptionShared<T>>,
    next_subscriber_id: Arc<AtomicU64>,
}

struct SubscriptionShared<T: Send + Sync + 'static> {
    mirror: Arc<ArcSwap<T>>,
    published: Arc<ArcSwap<PublishedValue<T>>>,
    subscribers: Arc<ArcSwap<SubscriptionSlotTable<T>>>,
    ring: SubscriptionRing<T>,
    overflow: SubscriptionOverflow,
    lifecycle: AtomicU8,
    active_writers: AtomicUsize,
    next_sequence: AtomicU64,
    published_sequence: AtomicU64,
    parked_slots: Arc<AtomicUsize>,
}

struct PublishedValue<T: Send + Sync + 'static> {
    sequence: u64,
    value: Arc<T>,
}

struct SubscriptionSlotTable<T: Send + Sync + 'static> {
    slots: Vec<Arc<SubscriptionSlot<T>>>,
}

struct SubscriptionRing<T: Send + Sync + 'static> {
    logical_capacity: u64,
    physical_capacity: usize,
    slots: Vec<SubscriptionRingSlot<T>>,
    space_lock: Mutex<()>,
    space_available: Condvar,
    space_waiters: AtomicUsize,
}

struct SubscriptionRingSlot<T: Send + Sync + 'static> {
    sequence: AtomicU64,
    value: ArcSwapOption<T>,
}

impl<T: Send + Sync + 'static> Clone for Subscription<T> {
    fn clone(&self) -> Self {
        Self {
            inner: Arc::clone(&self.inner),
        }
    }
}

impl<T: Send + Sync + 'static> Subscription<T> {
    /// Create a subscription initialized to `initial`.
    ///
    /// Panics if `capacity == 0`.
    pub fn new(initial: T, capacity: usize, overflow: SubscriptionOverflow) -> StreamResult<Self> {
        assert!(
            capacity > 0,
            "subscription capacity must be greater than zero"
        );
        let value = Arc::new(initial);
        let shared = Arc::new(SubscriptionShared {
            mirror: Arc::new(ArcSwap::from(Arc::clone(&value))),
            published: Arc::new(ArcSwap::from_pointee(PublishedValue {
                sequence: 0,
                value: Arc::clone(&value),
            })),
            subscribers: Arc::new(ArcSwap::from_pointee(SubscriptionSlotTable {
                slots: Vec::new(),
            })),
            ring: SubscriptionRing::new(capacity),
            overflow,
            lifecycle: AtomicU8::new(STATE_OPEN),
            active_writers: AtomicUsize::new(0),
            next_sequence: AtomicU64::new(0),
            published_sequence: AtomicU64::new(0),
            parked_slots: Arc::new(AtomicUsize::new(0)),
        });
        let state = SubscriptionActorState {
            shared: Arc::clone(&shared),
            subscribers: HashMap::new(),
            closed: false,
        };
        let (actor, _handle) =
            block_on_ractor_runtime(Actor::spawn(None, SubscriptionActor::<T>::default(), state))?
                .map_err(|error| {
                    StreamError::Failed(format!("subscription actor failed to spawn: {error}"))
                })?;
        Ok(Self {
            inner: Arc::new(SubscriptionInner {
                actor,
                shared,
                next_subscriber_id: Arc::new(AtomicU64::new(1)),
            }),
        })
    }

    /// Return the current immutable snapshot without sending an actor message.
    #[must_use]
    pub fn get(&self) -> Arc<T> {
        self.inner.shared.mirror.load_full()
    }

    /// Return a cloned value using `ArcSwap::load()`'s guarded read path.
    ///
    /// This avoids cloning the `Arc` itself on the hot read path. For scalar `Copy`/cheap-`Clone`
    /// values, this is the fair equivalent of JVM refs returning the value directly; use
    /// [`Subscription::get`] when the caller wants an owned snapshot shared by `Arc`.
    #[must_use]
    pub fn get_cloned(&self) -> T
    where
        T: Clone,
    {
        self.inner.shared.mirror.load().as_ref().clone()
    }

    /// Set the state and wait for the transition to be accepted according to the overflow policy.
    pub fn set(&self, value: T) -> StreamResult<()> {
        self.publish_set(Arc::new(value))
    }

    /// Set the state on the caller thread.
    ///
    /// With [`SubscriptionOverflow::Backpressure`], this may still park the caller until subscriber
    /// cursors make ring capacity available. It does not send an actor message.
    pub fn set_eventually(&self, value: T) -> StreamResult<()> {
        self.publish_set(Arc::new(value))
    }

    /// Update the state atomically and wait for the transition to be accepted.
    ///
    /// The update function may be called more than once if a concurrent writer wins the CAS race.
    pub fn update<F>(&self, update: F) -> StreamResult<()>
    where
        F: FnMut(&T) -> T + Send + 'static,
    {
        self.publish_update(update)
    }

    /// Update the state atomically on the caller thread.
    ///
    /// The update function may be called more than once if a concurrent writer wins the CAS race.
    pub fn update_eventually<F>(&self, update: F) -> StreamResult<()>
    where
        F: FnMut(&T) -> T + Send + 'static,
    {
        self.publish_update(update)
    }

    /// Close the subscription, re-emitting the current final snapshot to current subscribers.
    pub fn close(&self) -> StreamResult<()> {
        self.send_close(None)
    }

    /// Set a final value, then close the subscription in one control-plane turn.
    pub fn close_with(&self, final_value: T) -> StreamResult<()> {
        self.send_close(Some(final_value))
    }

    fn publish_set(&self, value: Arc<T>) -> StreamResult<()> {
        let _permit = self.inner.shared.begin_write()?;
        let sequence = self.inner.shared.claim_sequence();
        self.inner.shared.wait_publish_turn(sequence);
        self.inner.shared.wait_for_ring_capacity(sequence);
        let overflow = self.inner.shared.apply_overflow_policy(sequence);
        self.inner.shared.finish_publish(sequence, value);
        overflow
    }

    fn publish_update<F>(&self, mut update: F) -> StreamResult<()>
    where
        F: FnMut(&T) -> T + Send + 'static,
    {
        let _permit = self.inner.shared.begin_write()?;
        let sequence = self.inner.shared.claim_sequence();
        self.inner.shared.wait_publish_turn(sequence);
        self.inner.shared.wait_for_ring_capacity(sequence);
        let value = loop {
            let current = self.inner.shared.mirror.load();
            let next = Arc::new(update(current.as_ref()));
            let previous = self
                .inner
                .shared
                .mirror
                .compare_and_swap(&*current, Arc::clone(&next));
            if std::ptr::eq(current.as_ref(), previous.as_ref()) {
                break next;
            }
        };
        let overflow = self.inner.shared.apply_overflow_policy(sequence);
        self.inner.shared.ring.store(sequence, Arc::clone(&value));
        self.inner
            .shared
            .finish_publish_after_mirror(sequence, value);
        overflow
    }

    fn send_close(&self, final_value: Option<T>) -> StreamResult<()> {
        let (reply, receiver) = mpsc::channel();
        self.inner
            .actor
            .send_message(SubscriptionMessage::Close { final_value, reply })
            .map_err(|error| StreamError::ActorAskSendFailed {
                reason: error.to_string(),
            })?;
        receiver.recv().unwrap_or(Err(StreamError::ActorTerminated))
    }

    fn register_slot(&self, slot: Arc<SubscriptionSlot<T>>, id: u64) -> StreamResult<()> {
        let (reply, receiver) = mpsc::channel();
        self.inner
            .actor
            .send_message(SubscriptionMessage::Subscribe { id, slot, reply })
            .map_err(|error| StreamError::ActorAskSendFailed {
                reason: error.to_string(),
            })?;
        receiver.recv().unwrap_or(Err(StreamError::ActorTerminated))
    }
}

impl<T: Clone + Send + Sync + 'static> Subscription<T> {
    /// A bounded source of the current value followed by every accepted change.
    ///
    /// Under [`SubscriptionOverflow::Backpressure`], every subscriber observes every change. Under
    /// `DropNew`, slow subscribers may miss changes. Under `Fail`, a full subscriber fails with
    /// `StreamError::Failed`.
    #[must_use]
    pub fn changes(&self) -> Source<T> {
        let actor = self.inner.actor.clone();
        let subscription = self.clone();
        let shared = Arc::clone(&self.inner.shared);
        let next_subscriber_id = Arc::clone(&self.inner.next_subscriber_id);
        Source::from_materialized_factory(move |_materializer| {
            let id = next_subscriber_id.fetch_add(1, Ordering::Relaxed);
            let slot = SubscriptionSlot::new(id, actor.clone(), Arc::clone(&shared.parked_slots));
            subscription.register_slot(Arc::clone(&slot), id)?;
            let stream: BoxStream<T> = Box::new(SubscriptionChangesStream {
                shared: Arc::clone(&shared),
                slot,
                pending: VecDeque::new(),
                terminated: false,
            });
            Ok((stream, NotUsed))
        })
    }

    #[doc(hidden)]
    pub fn __benchmark_changes(&self) -> StreamResult<SubscriptionBenchmarkStream<T>> {
        let id = self
            .inner
            .next_subscriber_id
            .fetch_add(1, Ordering::Relaxed);
        let slot = SubscriptionSlot::new(
            id,
            self.inner.actor.clone(),
            Arc::clone(&self.inner.shared.parked_slots),
        );
        self.register_slot(Arc::clone(&slot), id)?;
        Ok(SubscriptionBenchmarkStream {
            shared: Arc::clone(&self.inner.shared),
            slot,
            pending: VecDeque::new(),
            terminated: false,
        })
    }
}

impl<T: Send + Sync + 'static> SubscriptionShared<T> {
    fn begin_write(&self) -> StreamResult<WritePermit<'_>> {
        if self.lifecycle.load(Ordering::Acquire) != STATE_OPEN {
            return Err(closed_error());
        }
        self.active_writers.fetch_add(1, Ordering::AcqRel);
        if self.lifecycle.load(Ordering::Acquire) == STATE_OPEN {
            Ok(WritePermit {
                active_writers: &self.active_writers,
            })
        } else {
            self.active_writers.fetch_sub(1, Ordering::AcqRel);
            Err(closed_error())
        }
    }

    fn claim_sequence(&self) -> u64 {
        self.next_sequence.fetch_add(1, Ordering::AcqRel) + 1
    }

    fn wait_publish_turn(&self, sequence: u64) {
        let mut spins = 0_u32;
        while self.published_sequence.load(Ordering::Acquire) + 1 != sequence {
            spins = spins.wrapping_add(1);
            if spins < 64 {
                hint::spin_loop();
            } else {
                thread::yield_now();
            }
        }
    }

    fn wait_for_ring_capacity(&self, sequence: u64) {
        if self.overflow != SubscriptionOverflow::Backpressure {
            return;
        }
        let mut guard = self
            .ring
            .space_lock
            .lock()
            .unwrap_or_else(|poison| poison.into_inner());
        while self.sequence_would_overflow(sequence) {
            self.ring.space_waiters.fetch_add(1, Ordering::AcqRel);
            if !self.sequence_would_overflow(sequence) {
                self.ring.space_waiters.fetch_sub(1, Ordering::AcqRel);
                break;
            }
            guard = self
                .ring
                .space_available
                .wait_timeout(guard, SLOT_WAIT_BACKSTOP)
                .unwrap_or_else(|poison| poison.into_inner())
                .0;
            self.ring.space_waiters.fetch_sub(1, Ordering::AcqRel);
        }
    }

    fn sequence_would_overflow(&self, sequence: u64) -> bool {
        let Some(cursor) = self.min_active_cursor() else {
            return false;
        };
        sequence >= cursor.saturating_add(self.ring.logical_capacity)
    }

    fn min_active_cursor(&self) -> Option<u64> {
        let table = self.subscribers.load();
        table
            .slots
            .iter()
            .filter_map(|slot| slot.backpressure_cursor())
            .min()
    }

    fn apply_overflow_policy(&self, sequence: u64) -> StreamResult<()> {
        match self.overflow {
            SubscriptionOverflow::Backpressure => Ok(()),
            SubscriptionOverflow::DropNew => {
                let table = self.subscribers.load();
                for slot in &table.slots {
                    if slot.is_full_for(sequence, self.ring.logical_capacity) {
                        slot.drop_new(sequence, self.ring.logical_capacity);
                    }
                }
                Ok(())
            }
            SubscriptionOverflow::Fail => {
                let table = self.subscribers.load();
                let mut overflowed = false;
                let error = overflow_error(self.ring.logical_capacity);
                for slot in &table.slots {
                    if slot.is_full_for(sequence, self.ring.logical_capacity) {
                        overflowed = true;
                        slot.fail_after(sequence, error.clone());
                    }
                }
                if overflowed { Err(error) } else { Ok(()) }
            }
        }
    }

    fn finish_publish(&self, sequence: u64, value: Arc<T>) {
        self.ring.store(sequence, Arc::clone(&value));
        self.mirror.store(Arc::clone(&value));
        self.finish_publish_after_mirror(sequence, value);
    }

    fn finish_publish_after_mirror(&self, sequence: u64, value: Arc<T>) {
        self.published.store(Arc::new(PublishedValue {
            sequence,
            value: Arc::clone(&value),
        }));
        self.published_sequence.store(sequence, Ordering::Release);
        if self.parked_slots.load(Ordering::Acquire) != 0 {
            let table = self.subscribers.load();
            for slot in &table.slots {
                slot.wake_for_sequence(sequence);
            }
        }
    }

    fn wait_for_writers_to_drain(&self) {
        while self.active_writers.load(Ordering::Acquire) != 0 {
            thread::yield_now();
        }
    }
}

impl<T: Send + Sync + 'static> SubscriptionRing<T> {
    fn new(logical_capacity: usize) -> Self {
        let physical_capacity = logical_capacity.max(1_024).next_power_of_two();
        let mut slots = Vec::with_capacity(physical_capacity);
        for _ in 0..physical_capacity {
            slots.push(SubscriptionRingSlot {
                sequence: AtomicU64::new(0),
                value: ArcSwapOption::empty(),
            });
        }
        Self {
            logical_capacity: logical_capacity as u64,
            physical_capacity,
            slots,
            space_lock: Mutex::new(()),
            space_available: Condvar::new(),
            space_waiters: AtomicUsize::new(0),
        }
    }

    fn store(&self, sequence: u64, value: Arc<T>) {
        let slot = &self.slots[self.index(sequence)];
        slot.value.store(Some(value));
        slot.sequence.store(sequence, Ordering::Release);
    }

    fn load(&self, sequence: u64) -> Option<Arc<T>> {
        let slot = &self.slots[self.index(sequence)];
        if slot.sequence.load(Ordering::Acquire) == sequence {
            slot.value.load_full()
        } else {
            None
        }
    }

    fn has(&self, sequence: u64) -> bool {
        let slot = &self.slots[self.index(sequence)];
        slot.sequence.load(Ordering::Acquire) == sequence
    }

    fn oldest_available(&self, published_sequence: u64) -> u64 {
        published_sequence
            .saturating_sub(self.physical_capacity as u64)
            .saturating_add(1)
            .max(1)
    }

    fn notify_space(&self) {
        if self.space_waiters.load(Ordering::Acquire) == 0 {
            return;
        }
        let _guard = self
            .space_lock
            .lock()
            .unwrap_or_else(|poison| poison.into_inner());
        self.space_available.notify_all();
    }

    fn index(&self, sequence: u64) -> usize {
        sequence as usize & (self.physical_capacity - 1)
    }
}

struct WritePermit<'a> {
    active_writers: &'a AtomicUsize,
}

impl Drop for WritePermit<'_> {
    fn drop(&mut self) {
        self.active_writers.fetch_sub(1, Ordering::AcqRel);
    }
}

impl<T: Send + Sync + 'static> Drop for SubscriptionInner<T> {
    fn drop(&mut self) {
        self.actor.stop(None);
    }
}

enum SubscriptionMessage<T: Send + Sync + 'static> {
    Close {
        final_value: Option<T>,
        reply: Ack,
    },
    Subscribe {
        id: u64,
        slot: Arc<SubscriptionSlot<T>>,
        reply: Ack,
    },
    Unsubscribe {
        id: u64,
    },
}

#[cfg(feature = "cluster")]
impl<T: Send + Sync + 'static> ractor::Message for SubscriptionMessage<T> {}

struct SubscriptionActor<T> {
    _marker: PhantomData<fn() -> T>,
}

impl<T> Default for SubscriptionActor<T> {
    fn default() -> Self {
        Self {
            _marker: PhantomData,
        }
    }
}

struct SubscriptionActorState<T: Send + Sync + 'static> {
    shared: Arc<SubscriptionShared<T>>,
    subscribers: HashMap<u64, Arc<SubscriptionSlot<T>>>,
    closed: bool,
}

impl<T: Send + Sync + 'static> Actor for SubscriptionActor<T> {
    type Msg = SubscriptionMessage<T>;
    type State = SubscriptionActorState<T>;
    type Arguments = SubscriptionActorState<T>;

    async fn pre_start(
        &self,
        _myself: ActorRef<Self::Msg>,
        args: Self::Arguments,
    ) -> Result<Self::State, ActorProcessingErr> {
        Ok(args)
    }

    async fn handle(
        &self,
        _myself: ActorRef<Self::Msg>,
        message: Self::Msg,
        state: &mut Self::State,
    ) -> Result<(), ActorProcessingErr> {
        match message {
            SubscriptionMessage::Close { final_value, reply } => {
                close_subscription(state, final_value);
                let _ = reply.send(Ok(()));
            }
            SubscriptionMessage::Subscribe { id, slot, reply } => {
                if state.closed || state.shared.lifecycle.load(Ordering::Acquire) == STATE_CLOSED {
                    let published = state.shared.published.load_full();
                    slot.complete_post_close(Arc::clone(&published.value));
                } else {
                    state.subscribers.insert(id, Arc::clone(&slot));
                    publish_subscription_slot_table(state);
                    let published = state.shared.published.load_full();
                    slot.seed(
                        published.sequence.saturating_add(1),
                        Arc::clone(&published.value),
                    );
                }
                let _ = reply.send(Ok(()));
            }
            SubscriptionMessage::Unsubscribe { id } => {
                state.subscribers.remove(&id);
                publish_subscription_slot_table(state);
                state.shared.ring.notify_space();
            }
        }
        Ok(())
    }

    async fn post_stop(
        &self,
        _myself: ActorRef<Self::Msg>,
        state: &mut Self::State,
    ) -> Result<(), ActorProcessingErr> {
        if !state.closed {
            for slot in state.subscribers.values() {
                slot.fail_now(StreamError::ActorTerminated);
            }
            state.subscribers.clear();
            publish_subscription_slot_table(state);
            state.shared.ring.notify_space();
        }
        Ok(())
    }
}

fn close_subscription<T: Send + Sync + 'static>(
    state: &mut SubscriptionActorState<T>,
    final_value: Option<T>,
) {
    if state.closed {
        return;
    }
    match state.shared.lifecycle.compare_exchange(
        STATE_OPEN,
        STATE_CLOSING,
        Ordering::AcqRel,
        Ordering::Acquire,
    ) {
        Ok(_) => {}
        Err(STATE_CLOSED) => {
            state.closed = true;
            return;
        }
        Err(_) => {}
    }
    state.shared.wait_for_writers_to_drain();

    let sequence = state.shared.claim_sequence();
    state.shared.wait_publish_turn(sequence);
    let value = final_value
        .map(Arc::new)
        .unwrap_or_else(|| state.shared.mirror.load_full());
    state.shared.mirror.store(Arc::clone(&value));
    state.shared.published.store(Arc::new(PublishedValue {
        sequence,
        value: Arc::clone(&value),
    }));
    state
        .shared
        .published_sequence
        .store(sequence, Ordering::Release);
    state
        .shared
        .lifecycle
        .store(STATE_CLOSED, Ordering::Release);

    for slot in state.subscribers.values() {
        slot.complete_with_final(sequence, Arc::clone(&value));
    }
    state.subscribers.clear();
    publish_subscription_slot_table(state);
    state.shared.ring.notify_space();
    state.closed = true;
}

fn publish_subscription_slot_table<T: Send + Sync + 'static>(state: &SubscriptionActorState<T>) {
    let slots = state.subscribers.values().cloned().collect::<Vec<_>>();
    state
        .shared
        .subscribers
        .store(Arc::new(SubscriptionSlotTable { slots }));
}

fn closed_error() -> StreamError {
    StreamError::Failed("subscription is closed".into())
}

fn overflow_error(capacity: u64) -> StreamError {
    StreamError::Failed(format!(
        "subscription buffer overflow (max capacity was: {capacity})"
    ))
}

fn atomic_fetch_min(target: &AtomicU64, value: u64) {
    let mut current = target.load(Ordering::Acquire);
    while value < current {
        match target.compare_exchange(current, value, Ordering::AcqRel, Ordering::Acquire) {
            Ok(_) => return,
            Err(observed) => current = observed,
        }
    }
}

fn atomic_fetch_max(target: &AtomicU64, value: u64) {
    let mut current = target.load(Ordering::Acquire);
    while value > current {
        match target.compare_exchange(current, value, Ordering::AcqRel, Ordering::Acquire) {
            Ok(_) => return,
            Err(observed) => current = observed,
        }
    }
}

struct SubscriptionSlot<T: Send + Sync + 'static> {
    id: u64,
    actor: ActorRef<SubscriptionMessage<T>>,
    parked_count: Arc<AtomicUsize>,
    cursor: AtomicU64,
    active: AtomicBool,
    parked: AtomicBool,
    drop_from: AtomicU64,
    drop_through: AtomicU64,
    terminal_from: AtomicU64,
    state: Mutex<SubscriptionSlotState<T>>,
    available: Condvar,
    async_available: Notify,
}

struct SubscriptionSlotState<T: Send + Sync + 'static> {
    seed: Option<Arc<T>>,
    terminal: Option<SubscriptionSlotTerminal<T>>,
}

#[derive(Clone)]
enum SubscriptionSlotTerminal<T: Send + Sync + 'static> {
    Complete {
        final_sequence: u64,
        final_value: Option<Arc<T>>,
    },
    Error {
        after_sequence: u64,
        error: StreamError,
    },
}

impl<T: Send + Sync + 'static> SubscriptionSlot<T> {
    fn new(
        id: u64,
        actor: ActorRef<SubscriptionMessage<T>>,
        parked_count: Arc<AtomicUsize>,
    ) -> Arc<Self> {
        Arc::new(Self {
            id,
            actor,
            parked_count,
            cursor: AtomicU64::new(UNSEEDED_CURSOR),
            active: AtomicBool::new(true),
            parked: AtomicBool::new(false),
            drop_from: AtomicU64::new(NO_DROP_FROM),
            drop_through: AtomicU64::new(0),
            terminal_from: AtomicU64::new(NO_TERMINAL_FROM),
            state: Mutex::new(SubscriptionSlotState {
                seed: None,
                terminal: None,
            }),
            available: Condvar::new(),
            async_available: Notify::new(),
        })
    }

    fn lock(&self) -> MutexGuard<'_, SubscriptionSlotState<T>> {
        self.state
            .lock()
            .unwrap_or_else(|poison| poison.into_inner())
    }

    fn seed(&self, next_sequence: u64, value: Arc<T>) {
        self.cursor.store(next_sequence, Ordering::Release);
        let mut state = self.lock();
        state.seed = Some(value);
        drop(state);
        self.wake();
    }

    fn complete_post_close(&self, value: Arc<T>) {
        self.cursor.store(0, Ordering::Release);
        let mut state = self.lock();
        state.seed = Some(value);
        state.terminal = Some(SubscriptionSlotTerminal::Complete {
            final_sequence: 0,
            final_value: None,
        });
        drop(state);
        self.terminal_from.store(0, Ordering::Release);
        self.active.store(false, Ordering::Release);
        self.wake();
    }

    fn complete_with_final(&self, final_sequence: u64, value: Arc<T>) {
        let mut state = self.lock();
        if state.terminal.is_none() {
            state.terminal = Some(SubscriptionSlotTerminal::Complete {
                final_sequence,
                final_value: Some(value),
            });
        }
        drop(state);
        self.terminal_from
            .fetch_min(final_sequence, Ordering::AcqRel);
        self.wake();
    }

    fn fail_after(&self, after_sequence: u64, error: StreamError) {
        let mut state = self.lock();
        if state.terminal.is_none() {
            state.terminal = Some(SubscriptionSlotTerminal::Error {
                after_sequence,
                error,
            });
        }
        drop(state);
        self.terminal_from
            .fetch_min(after_sequence, Ordering::AcqRel);
        self.active.store(false, Ordering::Release);
        self.wake();
    }

    fn fail_now(&self, error: StreamError) {
        let cursor = self.cursor.load(Ordering::Acquire);
        let after_sequence = if cursor == UNSEEDED_CURSOR { 0 } else { cursor };
        self.fail_after(after_sequence, error);
    }

    fn is_full_for(&self, sequence: u64, capacity: u64) -> bool {
        if !self.active.load(Ordering::Acquire) {
            return false;
        }
        let cursor = self.cursor.load(Ordering::Acquire);
        cursor != UNSEEDED_CURSOR && sequence >= cursor.saturating_add(capacity)
    }

    fn backpressure_cursor(&self) -> Option<u64> {
        if !self.active.load(Ordering::Acquire) {
            return None;
        }
        let cursor = self.cursor.load(Ordering::Acquire);
        (cursor != UNSEEDED_CURSOR).then_some(cursor)
    }

    fn drop_new(&self, sequence: u64, capacity: u64) {
        let cursor = self.cursor.load(Ordering::Acquire);
        if cursor == UNSEEDED_CURSOR {
            return;
        }
        let from = cursor.saturating_add(capacity);
        if sequence >= from {
            atomic_fetch_min(&self.drop_from, from);
            atomic_fetch_max(&self.drop_through, sequence);
            self.wake();
        }
    }

    fn skip_dropped(&self, cursor: u64) -> Option<u64> {
        let from = self.drop_from.load(Ordering::Acquire);
        let through = self.drop_through.load(Ordering::Acquire);
        if from != NO_DROP_FROM && cursor >= from && cursor <= through {
            self.drop_from.store(NO_DROP_FROM, Ordering::Release);
            self.drop_through.store(0, Ordering::Release);
            Some(through.saturating_add(1))
        } else {
            None
        }
    }

    fn has_dropped(&self, cursor: u64) -> bool {
        let from = self.drop_from.load(Ordering::Acquire);
        let through = self.drop_through.load(Ordering::Acquire);
        from != NO_DROP_FROM && cursor >= from && cursor <= through
    }

    fn terminal_blocks(&self, cursor: u64) -> bool {
        cursor >= self.terminal_from.load(Ordering::Acquire)
    }

    fn wake(&self) {
        if self.parked.swap(false, Ordering::AcqRel) {
            self.parked_count.fetch_sub(1, Ordering::AcqRel);
            self.available.notify_all();
            self.async_available.notify_waiters();
        }
    }

    fn park(&self) {
        if !self.parked.swap(true, Ordering::AcqRel) {
            self.parked_count.fetch_add(1, Ordering::AcqRel);
        }
    }

    fn unpark(&self) {
        if self.parked.swap(false, Ordering::AcqRel) {
            self.parked_count.fetch_sub(1, Ordering::AcqRel);
        }
    }

    fn wake_for_sequence(&self, sequence: u64) {
        if self.cursor.load(Ordering::Acquire) == sequence {
            self.wake();
        }
    }

    fn unsubscribe(&self) {
        self.active.store(false, Ordering::Release);
        let _ = self
            .actor
            .send_message(SubscriptionMessage::Unsubscribe { id: self.id });
    }
}

struct SubscriptionChangesStream<T: Clone + Send + Sync + 'static> {
    shared: Arc<SubscriptionShared<T>>,
    slot: Arc<SubscriptionSlot<T>>,
    pending: VecDeque<Arc<T>>,
    terminated: bool,
}

#[doc(hidden)]
pub struct SubscriptionBenchmarkStream<T: Clone + Send + Sync + 'static> {
    shared: Arc<SubscriptionShared<T>>,
    slot: Arc<SubscriptionSlot<T>>,
    pending: VecDeque<Arc<T>>,
    terminated: bool,
}

impl<T: Clone + Send + Sync + 'static> Iterator for SubscriptionChangesStream<T> {
    type Item = StreamResult<T>;

    fn next(&mut self) -> Option<Self::Item> {
        if self.terminated {
            return None;
        }

        loop {
            if let Some(value) = self.pending.pop_front() {
                return Some(Ok(value.as_ref().clone()));
            }

            if let Some(item) = self.poll_seed_or_terminal() {
                return item;
            }

            let cursor = self.slot.cursor.load(Ordering::Acquire);
            if cursor == UNSEEDED_CURSOR {
                self.wait_for_wake();
                continue;
            }

            if let Some(next_cursor) = self.slot.skip_dropped(cursor) {
                self.slot.cursor.store(next_cursor, Ordering::Release);
                self.shared.ring.notify_space();
                continue;
            }

            if let Some(value) = self.drain_available(cursor) {
                return Some(Ok(value.as_ref().clone()));
            }

            let published = self.shared.published_sequence.load(Ordering::Acquire);
            if cursor <= published {
                let oldest = self.shared.ring.oldest_available(published);
                if cursor < oldest {
                    match self.shared.overflow {
                        SubscriptionOverflow::DropNew => {
                            self.slot.cursor.store(oldest, Ordering::Release);
                            self.shared.ring.notify_space();
                            continue;
                        }
                        SubscriptionOverflow::Backpressure | SubscriptionOverflow::Fail => {
                            self.terminated = true;
                            return Some(Err(overflow_error(self.shared.ring.logical_capacity)));
                        }
                    }
                }
            }

            if current_stream_cancelled()
                .as_ref()
                .is_some_and(|cancelled| cancelled.load(Ordering::SeqCst))
            {
                self.terminated = true;
                return Some(Err(StreamError::Cancelled));
            }

            self.wait_for_wake();
        }
    }
}

impl<T: Clone + Send + Sync + 'static> SubscriptionChangesStream<T> {
    fn drain_available(&mut self, start_cursor: u64) -> Option<Arc<T>> {
        let mut cursor = start_cursor;
        let first = self.shared.ring.load(cursor)?;
        cursor = cursor.saturating_add(1);
        let mut drained = 1_usize;

        while drained < SUBSCRIPTION_DRAIN_BATCH {
            if self.slot.has_dropped(cursor) || self.slot.terminal_blocks(cursor) {
                break;
            }
            let Some(value) = self.shared.ring.load(cursor) else {
                break;
            };
            self.pending.push_back(value);
            cursor = cursor.saturating_add(1);
            drained += 1;
        }

        self.slot.cursor.store(cursor, Ordering::Release);
        self.shared.ring.notify_space();
        Some(first)
    }

    fn poll_seed_or_terminal(&mut self) -> Option<Option<StreamResult<T>>> {
        let mut state = self.slot.lock();
        if let Some(seed) = state.seed.take() {
            return Some(Some(Ok(seed.as_ref().clone())));
        }

        let cursor = self.slot.cursor.load(Ordering::Acquire);
        if let Some(terminal) = &mut state.terminal {
            match terminal {
                SubscriptionSlotTerminal::Complete {
                    final_sequence,
                    final_value,
                } => {
                    if cursor >= *final_sequence {
                        if let Some(value) = final_value.take() {
                            return Some(Some(Ok(value.as_ref().clone())));
                        }
                        self.terminated = true;
                        return Some(None);
                    }
                }
                SubscriptionSlotTerminal::Error {
                    after_sequence,
                    error,
                } => {
                    if cursor >= *after_sequence {
                        self.terminated = true;
                        return Some(Some(Err(error.clone())));
                    }
                }
            }
        }
        None
    }

    fn wait_for_wake(&self) {
        let state = self.slot.lock();
        self.slot.park();
        fence(Ordering::SeqCst);
        let cursor = self.slot.cursor.load(Ordering::Acquire);
        if state.seed.is_some()
            || state.terminal.is_some()
            || self.slot.has_dropped(cursor)
            || (cursor != UNSEEDED_CURSOR && self.shared.ring.has(cursor))
        {
            self.slot.unpark();
            return;
        }
        let _guard = self
            .slot
            .available
            .wait_timeout(state, SLOT_WAIT_BACKSTOP)
            .unwrap_or_else(|poison| poison.into_inner())
            .0;
        self.slot.unpark();
    }
}

impl<T: Clone + Send + Sync + 'static> Drop for SubscriptionChangesStream<T> {
    fn drop(&mut self) {
        self.slot.unsubscribe();
        self.shared.ring.notify_space();
    }
}

impl<T: Clone + Send + Sync + 'static> SubscriptionBenchmarkStream<T> {
    #[doc(hidden)]
    pub async fn next(&mut self) -> Option<StreamResult<T>> {
        if self.terminated {
            return None;
        }

        loop {
            if let Some(value) = self.pending.pop_front() {
                return Some(Ok(value.as_ref().clone()));
            }

            if let Some(item) = self.poll_seed_or_terminal() {
                return item;
            }

            let cursor = self.slot.cursor.load(Ordering::Acquire);
            if cursor == UNSEEDED_CURSOR {
                self.wait_for_wake().await;
                continue;
            }

            if let Some(next_cursor) = self.slot.skip_dropped(cursor) {
                self.slot.cursor.store(next_cursor, Ordering::Release);
                self.shared.ring.notify_space();
                continue;
            }

            if let Some(value) = self.drain_available(cursor) {
                return Some(Ok(value.as_ref().clone()));
            }

            let published = self.shared.published_sequence.load(Ordering::Acquire);
            if cursor <= published {
                let oldest = self.shared.ring.oldest_available(published);
                if cursor < oldest {
                    match self.shared.overflow {
                        SubscriptionOverflow::DropNew => {
                            self.slot.cursor.store(oldest, Ordering::Release);
                            self.shared.ring.notify_space();
                            continue;
                        }
                        SubscriptionOverflow::Backpressure | SubscriptionOverflow::Fail => {
                            self.terminated = true;
                            return Some(Err(overflow_error(self.shared.ring.logical_capacity)));
                        }
                    }
                }
            }

            self.wait_for_wake().await;
        }
    }

    #[doc(hidden)]
    pub async fn count_changes(&mut self, target: u64) -> StreamResult<u64> {
        let mut count = 0_u64;
        while count < target {
            if self.terminated {
                return Err(StreamError::Failed(
                    "subscription stream ended before requested count".into(),
                ));
            }

            if !self.pending.is_empty() {
                let drained = self.pending.len().min((target - count) as usize);
                self.pending.drain(..drained);
                count += drained as u64;
                continue;
            }

            if let Some(item) = self.poll_seed_or_terminal() {
                match item {
                    Some(Ok(_)) => {
                        count += 1;
                        continue;
                    }
                    Some(Err(error)) => return Err(error),
                    None => {
                        return Err(StreamError::Failed(
                            "subscription stream completed before requested count".into(),
                        ));
                    }
                }
            }

            let cursor = self.slot.cursor.load(Ordering::Acquire);
            if cursor == UNSEEDED_CURSOR {
                self.wait_for_wake().await;
                continue;
            }

            if let Some(next_cursor) = self.slot.skip_dropped(cursor) {
                self.slot.cursor.store(next_cursor, Ordering::Release);
                self.shared.ring.notify_space();
                continue;
            }

            if let Some(drained) = self.drain_available_count(cursor, (target - count) as usize) {
                count += drained as u64;
                continue;
            }

            let published = self.shared.published_sequence.load(Ordering::Acquire);
            if cursor <= published {
                let oldest = self.shared.ring.oldest_available(published);
                if cursor < oldest {
                    return Err(overflow_error(self.shared.ring.logical_capacity));
                }
            }

            self.wait_for_wake().await;
        }
        Ok(count)
    }

    fn drain_available(&mut self, start_cursor: u64) -> Option<Arc<T>> {
        let mut cursor = start_cursor;
        let first = self.shared.ring.load(cursor)?;
        cursor = cursor.saturating_add(1);
        let mut drained = 1_usize;

        while drained < SUBSCRIPTION_DRAIN_BATCH {
            if self.slot.has_dropped(cursor) || self.slot.terminal_blocks(cursor) {
                break;
            }
            let Some(value) = self.shared.ring.load(cursor) else {
                break;
            };
            self.pending.push_back(value);
            cursor = cursor.saturating_add(1);
            drained += 1;
        }

        self.slot.cursor.store(cursor, Ordering::Release);
        self.shared.ring.notify_space();
        Some(first)
    }

    fn drain_available_count(&mut self, start_cursor: u64, limit: usize) -> Option<usize> {
        if self.slot.has_dropped(start_cursor) || self.slot.terminal_blocks(start_cursor) {
            return None;
        }
        let published = self.shared.published_sequence.load(Ordering::Acquire);
        if start_cursor > published {
            return None;
        }
        let oldest = self.shared.ring.oldest_available(published);
        if start_cursor < oldest {
            return None;
        }
        let available = published.saturating_sub(start_cursor).saturating_add(1) as usize;
        let limit = limit.min(SUBSCRIPTION_DRAIN_BATCH);
        let drained = available.min(limit);
        if drained == 0 {
            return None;
        }

        self.slot.cursor.store(
            start_cursor.saturating_add(drained as u64),
            Ordering::Release,
        );
        self.shared.ring.notify_space();
        Some(drained)
    }

    fn poll_seed_or_terminal(&mut self) -> Option<Option<StreamResult<T>>> {
        let mut state = self.slot.lock();
        if let Some(seed) = state.seed.take() {
            return Some(Some(Ok(seed.as_ref().clone())));
        }

        let cursor = self.slot.cursor.load(Ordering::Acquire);
        if let Some(terminal) = &mut state.terminal {
            match terminal {
                SubscriptionSlotTerminal::Complete {
                    final_sequence,
                    final_value,
                } => {
                    if cursor >= *final_sequence {
                        if let Some(value) = final_value.take() {
                            return Some(Some(Ok(value.as_ref().clone())));
                        }
                        self.terminated = true;
                        return Some(None);
                    }
                }
                SubscriptionSlotTerminal::Error {
                    after_sequence,
                    error,
                } => {
                    if cursor >= *after_sequence {
                        self.terminated = true;
                        return Some(Some(Err(error.clone())));
                    }
                }
            }
        }
        None
    }

    async fn wait_for_wake(&self) {
        let notified = self.slot.async_available.notified();
        tokio::pin!(notified);
        notified.as_mut().enable();

        {
            let state = self.slot.lock();
            self.slot.park();
            fence(Ordering::SeqCst);
            let cursor = self.slot.cursor.load(Ordering::Acquire);
            if state.seed.is_some()
                || state.terminal.is_some()
                || self.slot.has_dropped(cursor)
                || (cursor != UNSEEDED_CURSOR && self.shared.ring.has(cursor))
            {
                self.slot.unpark();
                return;
            }
        }

        notified.await;
        self.slot.unpark();
    }
}

impl<T: Clone + Send + Sync + 'static> Drop for SubscriptionBenchmarkStream<T> {
    fn drop(&mut self) {}
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{Sink, stream::Materializer};
    use std::{
        sync::{
            Arc,
            atomic::{AtomicBool, AtomicUsize},
        },
        thread,
        time::{Duration, Instant},
    };

    fn wait<T>(completion: crate::StreamCompletion<T>) -> T {
        completion.wait().unwrap()
    }

    fn wait_until<F>(timeout: Duration, mut condition: F) -> bool
    where
        F: FnMut() -> bool,
    {
        let deadline = Instant::now() + timeout;
        while Instant::now() < deadline {
            if condition() {
                return true;
            }
            thread::yield_now();
        }
        condition()
    }

    #[test]
    fn get_snapshot_and_acked_set_read_your_writes() {
        let subscription = Subscription::new(1_u64, 8, SubscriptionOverflow::Backpressure).unwrap();
        assert_eq!(*subscription.get(), 1);
        assert_eq!(subscription.get_cloned(), 1);
        subscription.set(2).unwrap();
        assert_eq!(*subscription.get(), 2);
        assert_eq!(subscription.get_cloned(), 2);
        subscription.update(|value| *value + 1).unwrap();
        assert_eq!(*subscription.get(), 3);
        assert_eq!(subscription.get_cloned(), 3);
    }

    #[test]
    fn lossless_backpressure_subscribers_see_all_changes() {
        const SUBSCRIBERS: usize = 4;
        const WRITES: u64 = 128;
        let subscription =
            Subscription::new(0_u64, 256, SubscriptionOverflow::Backpressure).unwrap();
        let completions = (0..SUBSCRIBERS)
            .map(|_| subscription.changes().run_with(Sink::collect()).unwrap())
            .collect::<Vec<_>>();

        for value in 1..=WRITES {
            subscription.set(value).unwrap();
        }
        subscription.close_with(WRITES + 1).unwrap();

        for completion in completions {
            let values = wait(completion);
            let expected = (0..=WRITES + 1).collect::<Vec<_>>();
            assert_eq!(values, expected);
        }
    }

    #[test]
    fn backpressure_parks_producer_ack_until_capacity_returns() {
        let subscription = Subscription::new(0_u64, 1, SubscriptionOverflow::Backpressure).unwrap();
        let seen = Arc::new(Mutex::new(Vec::new()));
        let gate = Arc::new(AtomicBool::new(false));
        let sink_seen = Arc::clone(&seen);
        let sink_gate = Arc::clone(&gate);
        let completion = subscription
            .changes()
            .run_with(Sink::foreach(move |item| {
                sink_seen.lock().unwrap().push(item);
                while !sink_gate.load(Ordering::SeqCst) {
                    thread::yield_now();
                }
            }))
            .unwrap();

        assert!(wait_until(Duration::from_secs(1), || {
            seen.lock().unwrap().as_slice() == [0]
        }));
        subscription.set(1).unwrap();

        let producer_subscription = subscription.clone();
        let completed = Arc::new(AtomicBool::new(false));
        let producer_completed = Arc::clone(&completed);
        let producer = thread::spawn(move || {
            producer_subscription.set(2).unwrap();
            producer_completed.store(true, Ordering::SeqCst);
        });

        assert!(!wait_until(Duration::from_millis(25), || completed
            .load(Ordering::SeqCst)));
        assert_eq!(*subscription.get(), 1);
        gate.store(true, Ordering::SeqCst);
        assert!(wait_until(Duration::from_secs(1), || completed.load(Ordering::SeqCst)));
        producer.join().unwrap();
        assert_eq!(*subscription.get(), 2);
        subscription.close_with(3).unwrap();
        wait(completion);
        assert_eq!(seen.lock().unwrap().as_slice(), [0, 1, 2, 3]);
    }

    #[test]
    fn drop_new_policy_drops_only_full_subscribers() {
        let subscription = Subscription::new(0_u64, 1, SubscriptionOverflow::DropNew).unwrap();
        let seen = Arc::new(Mutex::new(Vec::new()));
        let gate = Arc::new(AtomicBool::new(false));
        let sink_seen = Arc::clone(&seen);
        let sink_gate = Arc::clone(&gate);
        let completion = subscription
            .changes()
            .run_with(Sink::foreach(move |item| {
                sink_seen.lock().unwrap().push(item);
                while !sink_gate.load(Ordering::SeqCst) {
                    thread::yield_now();
                }
            }))
            .unwrap();
        assert!(wait_until(Duration::from_secs(1), || {
            seen.lock().unwrap().as_slice() == [0]
        }));
        subscription.set(1).unwrap();
        subscription.set(2).unwrap();
        subscription.close_with(3).unwrap();
        gate.store(true, Ordering::SeqCst);
        wait(completion);
        assert_eq!(seen.lock().unwrap().as_slice(), [0, 1, 3]);
        assert_eq!(*subscription.get(), 3);
    }

    #[test]
    fn fail_policy_fails_full_subscriber_and_reports_overflow() {
        let subscription = Subscription::new(0_u64, 1, SubscriptionOverflow::Fail).unwrap();
        let seen = Arc::new(Mutex::new(Vec::new()));
        let gate = Arc::new(AtomicBool::new(false));
        let sink_seen = Arc::clone(&seen);
        let sink_gate = Arc::clone(&gate);
        let completion = subscription
            .changes()
            .run_with(Sink::foreach(move |item| {
                sink_seen.lock().unwrap().push(item);
                while !sink_gate.load(Ordering::SeqCst) {
                    thread::yield_now();
                }
            }))
            .unwrap();
        assert!(wait_until(Duration::from_secs(1), || {
            seen.lock().unwrap().as_slice() == [0]
        }));
        subscription.set(1).unwrap();
        assert!(matches!(
            subscription.set(2),
            Err(StreamError::Failed(message)) if message.contains("subscription buffer overflow")
        ));
        gate.store(true, Ordering::SeqCst);
        assert!(matches!(
            completion.wait(),
            Err(StreamError::Failed(message)) if message.contains("subscription buffer overflow")
        ));
        assert_eq!(seen.lock().unwrap().as_slice(), [0, 1]);
        assert_eq!(*subscription.get(), 2);
    }

    #[test]
    fn terminal_ordering_and_post_close_subscribe() {
        let subscription = Subscription::new(0_u64, 8, SubscriptionOverflow::Backpressure).unwrap();
        let completion = subscription.changes().run_with(Sink::collect()).unwrap();
        subscription.set(1).unwrap();
        subscription.close_with(9).unwrap();
        assert_eq!(wait(completion), vec![0, 1, 9]);

        let post_close = subscription.changes().run_collect().unwrap();
        assert_eq!(post_close, vec![9]);
    }

    #[test]
    fn dropping_feed_source_cancels_and_unsubscribes() {
        let subscription = Subscription::new(0_u64, 1, SubscriptionOverflow::Backpressure).unwrap();
        let pulled = Arc::new(AtomicUsize::new(0));
        let sink_pulled = Arc::clone(&pulled);
        let completion = subscription
            .changes()
            .run_with(Sink::foreach(move |_| {
                sink_pulled.fetch_add(1, Ordering::SeqCst);
            }))
            .unwrap();
        assert!(wait_until(Duration::from_secs(1), || {
            pulled.load(Ordering::SeqCst) == 1
        }));
        drop(completion);
        assert!(wait_until(Duration::from_secs(1), || subscription
            .set(1)
            .is_ok()));
    }

    #[test]
    fn actor_death_fails_feed() {
        let subscription = Subscription::new(0_u64, 8, SubscriptionOverflow::Backpressure).unwrap();
        let materializer = Materializer::new();
        let completion = subscription
            .changes()
            .drop(1)
            .run_with_materializer(Sink::head(), &materializer)
            .unwrap();
        drop(subscription);
        match completion.wait() {
            Err(StreamError::ActorTerminated) => {}
            other => panic!("expected actor termination, got {other:?}"),
        }
    }
}