invalidation 0.2.0

Dependency-aware invalidation primitives for incremental systems
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
// Copyright 2025 the Invalidation Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Invalidation coordinator for graph, set, cascades, and cross-channel edges.

use alloc::vec::Vec;
use core::hash::Hash;

use crate::cascade::{CascadeCycleError, ChannelCascade};
use crate::channel::Channel;
use crate::cross_channel::CrossChannelEdges;
use crate::drain::{DenseKey, DrainSorted, DrainSortedDeterministic};
use crate::drain_builder::{AnyOrder, DrainBuilder};
use crate::graph::{CycleError, CycleHandling, InvalidationGraph};
use crate::policy::PropagationPolicy;
use crate::scratch::TraversalScratch;
use crate::set::InvalidationSet;
use crate::trace::InvalidationTrace;

/// Coordinates graph dependencies, invalidation state, and cross-channel rules.
///
/// `InvalidationTracker` owns the common orchestration layer for invalidation:
/// a same-channel [`InvalidationGraph`], an [`InvalidationSet`], optional
/// [`ChannelCascade`] rules, and optional [`CrossChannelEdges`]. Use it when
/// marks should flow through those pieces as one coordinated operation.
///
/// If your embedder already owns propagation or scheduling policy, use
/// [`InvalidationGraph`] and [`InvalidationSet`] directly instead.
///
/// # Type Parameters
///
/// - `K`: The key type, typically a node identifier. Must be `Copy + Eq + Hash + DenseKey`.
///   If your natural key is owned/structured, see [`intern::Interner`](crate::intern::Interner).
///
/// # Example
///
/// ```
/// use invalidation::{Channel, CycleHandling, InvalidationTracker, EagerPolicy};
///
/// const LAYOUT: Channel = Channel::new(0);
/// const PAINT: Channel = Channel::new(1);
///
/// let mut tracker = InvalidationTracker::<u32>::new();
///
/// // Build dependency graph: 3 depends on 2, 2 depends on 1
/// tracker.add_dependency(2, 1, LAYOUT).unwrap();
/// tracker.add_dependency(3, 2, LAYOUT).unwrap();
///
/// // Mark with eager propagation (marks 1, 2, 3)
/// tracker.mark_with(1, LAYOUT, &EagerPolicy);
///
/// // Or mark manually without propagation
/// tracker.mark(1, PAINT);
///
/// // Drain in topological order: 1, 2, 3
/// let order: Vec<_> = tracker.drain_sorted(LAYOUT).collect();
/// assert_eq!(order, vec![1, 2, 3]);
/// ```
///
/// # See Also
///
/// - [`InvalidationGraph`] and [`InvalidationSet`]: Lower-level primitives.
/// - [`ChannelCascade`] and [`CrossChannelEdges`]: Cross-channel coordination.
/// - [`EagerPolicy`](crate::EagerPolicy) and [`LazyPolicy`](crate::LazyPolicy): Built-in propagation strategies.
/// - [`drain_sorted`](crate::drain_sorted) and [`drain_affected_sorted`](crate::drain_affected_sorted): Free-function drain helpers.
#[derive(Debug, Clone)]
pub struct InvalidationTracker<K>
where
    K: Copy + Eq + Hash + DenseKey,
{
    /// The dependency graph.
    graph: InvalidationGraph<K>,
    /// The invalidation set.
    invalidated: InvalidationSet<K>,
    /// How to handle cycles when adding dependencies.
    cycle_handling: CycleHandling,
    /// Channel-to-channel cascade rules.
    cascade: ChannelCascade,
    /// Cross-channel edges connecting (key, channel) pairs.
    cross_channel: CrossChannelEdges<K>,
}

impl<K> Default for InvalidationTracker<K>
where
    K: Copy + Eq + Hash + DenseKey,
{
    fn default() -> Self {
        Self::new()
    }
}

impl<K> InvalidationTracker<K>
where
    K: Copy + Eq + Hash + DenseKey,
{
    /// Creates a configurable drain builder.
    ///
    /// This is the preferred entrypoint for combining options like determinism,
    /// targeted drains, and tracing without multiplying `drain_*` methods.
    ///
    /// # Example
    ///
    /// ```rust
    /// use invalidation::{
    ///     Channel, CycleHandling, InvalidationTracker, OneParentRecorder, TraversalScratch,
    /// };
    ///
    /// const LAYOUT: Channel = Channel::new(0);
    ///
    /// let mut tracker = InvalidationTracker::<u32>::with_cycle_handling(CycleHandling::Error);
    /// // 1 <- 2 <- 3
    /// tracker.add_dependency(2, 1, LAYOUT).unwrap();
    /// tracker.add_dependency(3, 2, LAYOUT).unwrap();
    ///
    /// // Mark only the root; dependents are expanded lazily at drain-time.
    /// tracker.mark_with(1, LAYOUT, &invalidation::LazyPolicy);
    ///
    /// // Unrelated invalidated roots outside the target remain invalidated.
    /// tracker.mark(9, LAYOUT);
    ///
    /// let mut scratch = TraversalScratch::new();
    /// let mut trace = OneParentRecorder::new();
    ///
    /// let order: Vec<_> = tracker
    ///     .drain(LAYOUT)
    ///     .affected()
    ///     .within_dependencies_of(3)
    ///     .deterministic()
    ///     .trace(&mut scratch, &mut trace)
    ///     .run()
    ///     .collect();
    ///
    /// assert_eq!(order, vec![1, 2, 3]);
    /// assert!(tracker.is_invalidated(9, LAYOUT));
    /// assert_eq!(trace.explain_path(3, LAYOUT).unwrap(), vec![1, 2, 3]);
    /// ```
    pub fn drain(&mut self, channel: Channel) -> DrainBuilder<'_, '_, '_, K, AnyOrder> {
        DrainBuilder::new(&mut self.invalidated, &self.graph, channel)
    }

    /// Creates a new empty invalidation tracker with default cycle handling.
    #[must_use]
    pub fn new() -> Self {
        Self::with_cycle_handling(CycleHandling::default())
    }

    /// Creates a new empty invalidation tracker with the specified cycle handling.
    #[must_use]
    pub fn with_cycle_handling(cycle_handling: CycleHandling) -> Self {
        Self {
            graph: InvalidationGraph::new(),
            invalidated: InvalidationSet::new(),
            cycle_handling,
            cascade: ChannelCascade::new(),
            cross_channel: CrossChannelEdges::new(),
        }
    }

    /// Creates a tracker with static channel cascade rules.
    ///
    /// This is a convenience for systems with a fixed phase graph. Edges are
    /// applied with [`ChannelCascade::from_edges`]; duplicate edges are ignored,
    /// and cycles return [`CascadeCycleError`].
    pub fn with_cascades(
        cascades: impl IntoIterator<Item = (Channel, Channel)>,
    ) -> Result<Self, CascadeCycleError> {
        Ok(Self {
            graph: InvalidationGraph::new(),
            invalidated: InvalidationSet::new(),
            cycle_handling: CycleHandling::default(),
            cascade: ChannelCascade::from_edges(cascades)?,
            cross_channel: CrossChannelEdges::new(),
        })
    }

    /// Creates a tracker from an existing dependency graph.
    ///
    /// This is useful when graph construction is owned by a separate setup
    /// phase, but invalidation state should still be managed by the tracker.
    ///
    /// The tracker uses the default cycle handling mode for future dependency
    /// mutations. The supplied graph is not revalidated.
    #[must_use]
    pub fn from_graph(graph: InvalidationGraph<K>) -> Self {
        Self::from_graph_with_cycle_handling(graph, CycleHandling::default())
    }

    /// Creates a tracker from an existing dependency graph and cycle policy.
    ///
    /// The `cycle_handling` value is used for future calls that mutate
    /// dependencies through the tracker. The supplied graph is not revalidated.
    #[must_use]
    pub fn from_graph_with_cycle_handling(
        graph: InvalidationGraph<K>,
        cycle_handling: CycleHandling,
    ) -> Self {
        Self {
            graph,
            invalidated: InvalidationSet::new(),
            cycle_handling,
            cascade: ChannelCascade::new(),
            cross_channel: CrossChannelEdges::new(),
        }
    }

    /// Returns a reference to the underlying dependency graph.
    #[inline]
    #[must_use]
    pub fn graph(&self) -> &InvalidationGraph<K> {
        &self.graph
    }

    /// Returns a reference to the underlying invalidation set.
    #[inline]
    #[must_use]
    pub fn invalidated(&self) -> &InvalidationSet<K> {
        &self.invalidated
    }

    /// Returns the current operation generation of the invalidation set.
    ///
    /// See [`InvalidationSet::generation`] for details.
    #[inline]
    #[must_use]
    pub fn generation(&self) -> u64 {
        self.invalidated.generation()
    }

    /// Returns the current cycle handling mode.
    #[inline]
    #[must_use]
    pub fn cycle_handling(&self) -> CycleHandling {
        self.cycle_handling
    }

    /// Adds a dependency: `from` depends on `to` in the given channel.
    ///
    /// Uses the tracker's configured cycle handling mode.
    ///
    /// See [`InvalidationGraph::add_dependency`] for details.
    pub fn add_dependency(
        &mut self,
        from: K,
        to: K,
        channel: Channel,
    ) -> Result<bool, CycleError<K>> {
        self.graph
            .add_dependency(from, to, channel, self.cycle_handling)
    }

    /// Adds a dependency with explicit cycle handling.
    ///
    /// See [`InvalidationGraph::add_dependency`] for details.
    pub fn add_dependency_with(
        &mut self,
        from: K,
        to: K,
        channel: Channel,
        handling: CycleHandling,
    ) -> Result<bool, CycleError<K>> {
        self.graph.add_dependency(from, to, channel, handling)
    }

    /// Removes a dependency: `from` no longer depends on `to`.
    ///
    /// See [`InvalidationGraph::remove_dependency`] for details.
    pub fn remove_dependency(&mut self, from: K, to: K, channel: Channel) -> bool {
        self.graph.remove_dependency(from, to, channel)
    }

    /// Removes a key from the graph, invalidation set, and cross-channel edges.
    ///
    /// This is useful when a node is removed from the tree entirely.
    pub fn remove_key(&mut self, key: K) {
        self.graph.remove_key(key);
        self.invalidated.remove_key(key);
        self.cross_channel.remove_key(key);
    }

    /// Replaces all direct dependencies of `from` in `channel`.
    ///
    /// This is a convenience wrapper around
    /// [`InvalidationGraph::replace_dependencies`](crate::InvalidationGraph::replace_dependencies) that uses the
    /// tracker's configured cycle handling mode.
    pub fn replace_dependencies(
        &mut self,
        from: K,
        channel: Channel,
        to: impl IntoIterator<Item = K>,
    ) -> Result<bool, CycleError<K>> {
        self.graph
            .replace_dependencies(from, channel, to, self.cycle_handling)
    }

    /// Replaces all direct dependencies of `from` in `channel`, with explicit cycle handling.
    ///
    /// See [`InvalidationGraph::replace_dependencies`](crate::InvalidationGraph::replace_dependencies) for
    /// behavior and rollback semantics.
    pub fn replace_dependencies_with(
        &mut self,
        from: K,
        channel: Channel,
        to: impl IntoIterator<Item = K>,
        handling: CycleHandling,
    ) -> Result<bool, CycleError<K>> {
        self.graph.replace_dependencies(from, channel, to, handling)
    }

    /// Adds a channel cascade rule: invalidation on `from` also marks `to`.
    ///
    /// Returns `Ok(true)` if the rule was newly added, `Ok(false)` if it
    /// already existed, or `Err(CascadeCycleError)` if adding the rule would
    /// create a cycle.
    ///
    /// See [`ChannelCascade::add_cascade`] for details.
    pub fn add_cascade(&mut self, from: Channel, to: Channel) -> Result<bool, CascadeCycleError> {
        self.cascade.add_cascade(from, to)
    }

    /// Removes a channel cascade rule.
    ///
    /// Returns `true` if the rule existed and was removed.
    pub fn remove_cascade(&mut self, from: Channel, to: Channel) -> bool {
        self.cascade.remove_cascade(from, to)
    }

    /// Returns a reference to the channel cascade rules.
    #[inline]
    #[must_use]
    pub fn cascade(&self) -> &ChannelCascade {
        &self.cascade
    }

    /// Adds a cross-channel dependency edge.
    ///
    /// When `from_key` is invalidated on `from_ch`, `to_key` will also be
    /// marked on `to_ch` (when using [`mark_with`](Self::mark_with)).
    ///
    /// Returns `true` if the edge was newly added.
    pub fn add_cross_dependency(
        &mut self,
        from_key: K,
        from_ch: Channel,
        to_key: K,
        to_ch: Channel,
    ) -> bool {
        self.cross_channel
            .add_edge(from_key, from_ch, to_key, to_ch)
    }

    /// Removes a cross-channel dependency edge.
    ///
    /// Returns `true` if the edge existed and was removed.
    pub fn remove_cross_dependency(
        &mut self,
        from_key: K,
        from_ch: Channel,
        to_key: K,
        to_ch: Channel,
    ) -> bool {
        self.cross_channel
            .remove_edge(from_key, from_ch, to_key, to_ch)
    }

    /// Replaces all cross-channel dependents of `(from_key, from_ch)`.
    ///
    /// This updates the outgoing cross-channel edge set from one `(key,
    /// channel)` pair. Existing targets not present in `targets` are removed,
    /// new targets are added, and duplicates in `targets` are ignored.
    ///
    /// Returns `true` if the dependent set changed.
    pub fn replace_cross_dependents(
        &mut self,
        from_key: K,
        from_ch: Channel,
        targets: impl IntoIterator<Item = (K, Channel)>,
    ) -> bool {
        self.cross_channel
            .replace_dependents(from_key, from_ch, targets)
    }

    /// Removes all outgoing cross-channel edges from `(from_key, from_ch)`.
    ///
    /// Returns `true` if any edges existed and were removed.
    pub fn clear_cross_dependents(&mut self, from_key: K, from_ch: Channel) -> bool {
        self.cross_channel.clear_dependents(from_key, from_ch)
    }

    /// Removes all incoming cross-channel edges to `(to_key, to_ch)`.
    ///
    /// Returns `true` if any edges existed and were removed.
    pub fn clear_cross_dependencies(&mut self, to_key: K, to_ch: Channel) -> bool {
        self.cross_channel.clear_dependencies(to_key, to_ch)
    }

    /// Returns a reference to the cross-channel edges.
    #[inline]
    #[must_use]
    pub fn cross_channel(&self) -> &CrossChannelEdges<K> {
        &self.cross_channel
    }

    /// Marks a key as invalidated without graph or cross-channel propagation.
    ///
    /// This is a direct state update: it marks `(key, channel)` and, when
    /// channel cascade rules are configured, the same key on all transitively
    /// cascaded channels. It does not traverse same-channel graph dependents
    /// and does not follow [`CrossChannelEdges`].
    ///
    /// For normal "this key changed; mark the full invalidation closure"
    /// workflows, prefer [`mark_with`](Self::mark_with) with
    /// [`EagerPolicy`](crate::EagerPolicy) or [`LazyPolicy`](crate::LazyPolicy).
    ///
    /// Returns `true` if the key was newly marked invalidated on the
    /// primary channel (cascade marks are not reflected in the return value).
    #[inline]
    pub fn mark(&mut self, key: K, channel: Channel) -> bool {
        let result = self.invalidated.mark(key, channel);
        let cascaded = self.cascade.cascades_from(channel);
        if !cascaded.is_empty() {
            for ch in cascaded {
                self.invalidated.mark(key, ch);
            }
        }
        result
    }

    /// Marks a key as invalidated and follows the full propagation closure.
    ///
    /// The policy determines how invalidation spreads through the dependency
    /// graph. See [`PropagationPolicy`] for details.
    ///
    /// When cascade rules or cross-channel edges are configured, `mark_with`
    /// extends propagation across channels:
    ///
    /// 1. Runs the policy on `(key, channel)` and all cascaded channels.
    /// 2. For the root key and every key reachable via
    ///    [`InvalidationGraph::transitive_dependents`] that was actually
    ///    marked, follows cascade rules and cross-channel edges.
    /// 3. Repeats until no new `(key, channel)` pairs are discovered.
    ///
    /// This covers the built-in policies completely: [`EagerPolicy`](crate::EagerPolicy)
    /// marks exactly the graph-reachable dependents, and [`LazyPolicy`](crate::LazyPolicy)
    /// marks only the root. For custom policies, cross-channel follow-up is
    /// only defined for the root key and for graph-reachable keys on that
    /// channel that the policy actually marked. Keys marked outside the
    /// graph's reachability set will not have their cascade or cross-channel
    /// edges followed automatically.
    ///
    /// When no cascades or cross-channel edges are configured, this reduces
    /// to a single `policy.propagate()` call with no extra overhead.
    pub fn mark_with<P>(&mut self, key: K, channel: Channel, policy: &P)
    where
        P: PropagationPolicy<K>,
    {
        // Fast path: no cascades, no cross-channel edges — pure single-channel.
        if self.cascade.cascades_from(channel).is_empty() && self.cross_channel.is_empty() {
            policy.propagate(key, channel, &self.graph, &mut self.invalidated);
            return;
        }

        // Slow path: unified closure across channels.
        //
        // Worklist of (key, channel) pairs to propagate. For each pair we:
        // 1. Run the policy (same-channel propagation).
        // 2. For each key that ended up invalidated on that channel
        //    (root + dependents), check cascades and cross-channel edges.
        // 3. Enqueue any new (key, channel) pairs discovered.
        let mut worklist: Vec<(K, Channel)> = Vec::new();
        worklist.push((key, channel));
        let mut processed = hashbrown::HashSet::<(K, Channel)>::new();

        while let Some((k, ch)) = worklist.pop() {
            if !processed.insert((k, ch)) {
                continue;
            }

            // 1. Run the propagation policy on this (key, channel).
            policy.propagate(k, ch, &self.graph, &mut self.invalidated);

            // 2. Discover cross-channel targets from k and all of its
            //    transitive dependents that were actually marked.
            self.enqueue_cross_successors(k, ch, &processed, &mut worklist);

            // Enqueue targets for each transitive dependent of k on ch
            // that was actually marked (eager marks them, lazy does not).
            for dep in self.graph.transitive_dependents(k, ch) {
                if self.invalidated.is_invalidated(dep, ch) {
                    self.enqueue_cross_successors(dep, ch, &processed, &mut worklist);
                }
            }
        }
    }

    /// Returns `true` if the key is invalidated in the given channel.
    #[inline]
    #[must_use]
    pub fn is_invalidated(&self, key: K, channel: Channel) -> bool {
        self.invalidated.is_invalidated(key, channel)
    }

    /// Returns `true` if there are any invalidated keys in the given channel.
    #[inline]
    #[must_use]
    pub fn has_invalidated(&self, channel: Channel) -> bool {
        self.invalidated.has_invalidated(channel)
    }

    /// Returns `true` if there are no invalidated keys in any channel.
    #[inline]
    #[must_use]
    pub fn is_clean(&self) -> bool {
        self.invalidated.is_empty()
    }

    /// Drains invalidated keys in topological order using Kahn's algorithm.
    ///
    /// Keys are yielded in dependency order: a key is only yielded after
    /// all of its invalidated dependencies have been yielded. This ensures that
    /// when processing the invalidation set, a node is only processed after all
    /// of its dependencies have been processed.
    ///
    /// The channel is cleared eagerly when this iterator is created.
    ///
    /// Note: if the dependency subgraph induced by the invalidated keys contains a
    /// cycle, the drain will stall and some keys will not be yielded. You can
    /// detect this by exhausting the iterator and checking
    /// [`DrainSorted::completion`], or by using
    /// [`DrainSorted::collect_with_completion`].
    ///
    /// # Example
    ///
    /// ```
    /// use invalidation::{Channel, InvalidationTracker, EagerPolicy};
    ///
    /// const LAYOUT: Channel = Channel::new(0);
    ///
    /// let mut tracker = InvalidationTracker::<u32>::new();
    /// tracker.add_dependency(2, 1, LAYOUT).unwrap();
    /// tracker.add_dependency(3, 2, LAYOUT).unwrap();
    ///
    /// tracker.mark_with(1, LAYOUT, &EagerPolicy);
    ///
    /// // Process in order: 1, 2, 3
    /// for key in tracker.drain_sorted(LAYOUT) {
    ///     // recompute_layout(key);
    /// }
    /// ```
    pub fn drain_sorted(&mut self, channel: Channel) -> DrainSorted<'_, K> {
        // Keep this as a small, discoverable "easy mode" wrapper.
        //
        // For advanced drain workflows (determinism, targeted drains, tracing,
        // scratch reuse), prefer [`InvalidationTracker::drain`](crate::InvalidationTracker::drain).
        self.drain(channel).invalidated_only().run()
    }

    /// Drains all affected keys in topological order.
    ///
    /// Unlike [`drain_sorted`](Self::drain_sorted), this method first expands
    /// the invalidation set to include all transitive dependents of the marked keys.
    /// This is the correct drain method to use with [`LazyPolicy`](crate::LazyPolicy).
    ///
    /// Note: the yielded order is only deterministic up to dependency ordering.
    /// When multiple keys are simultaneously ready, the relative order among
    /// them is not specified and may vary across runs or platforms.
    ///
    /// # Algorithm
    ///
    /// 1. Collect all keys currently marked invalidated (the "roots").
    /// 2. Compute all transitive dependents of each root.
    /// 3. Return a topologically sorted drain over: roots ∪ dependents.
    ///
    /// # Example
    ///
    /// ```
    /// use invalidation::{Channel, InvalidationTracker, LazyPolicy};
    ///
    /// const LAYOUT: Channel = Channel::new(0);
    ///
    /// let mut tracker = InvalidationTracker::<u32>::new();
    /// tracker.add_dependency(2, 1, LAYOUT).unwrap();
    /// tracker.add_dependency(3, 2, LAYOUT).unwrap();
    ///
    /// // Mark only the root with lazy policy
    /// tracker.mark_with(1, LAYOUT, &LazyPolicy);
    ///
    /// // drain_affected_sorted expands to all affected keys: 1, 2, 3
    /// let order: Vec<_> = tracker.drain_affected_sorted(LAYOUT).collect();
    /// assert_eq!(order, vec![1, 2, 3]);
    /// ```
    pub fn drain_affected_sorted(&mut self, channel: Channel) -> DrainSorted<'_, K> {
        // Keep this as a small, discoverable "easy mode" wrapper.
        //
        // For advanced drain workflows (determinism, targeted drains, tracing,
        // scratch reuse), prefer [`InvalidationTracker::drain`](crate::InvalidationTracker::drain).
        self.drain(channel).affected().run()
    }

    /// Drains all affected keys in topological order, while recording a trace.
    ///
    /// This is a convenience wrapper around
    /// [`drain_affected_sorted_with_trace`](crate::drain_affected_sorted_with_trace).
    pub fn drain_affected_sorted_with_trace<T>(
        &mut self,
        channel: Channel,
        scratch: &mut TraversalScratch<K>,
        trace: &mut T,
    ) -> DrainSorted<'_, K>
    where
        T: InvalidationTrace<K>,
    {
        // For advanced drain workflows, prefer [`InvalidationTracker::drain`](crate::InvalidationTracker::drain).
        self.drain(channel).affected().trace(scratch, trace).run()
    }

    /// Collects invalidated keys and returns a [`DrainSorted`] iterator.
    ///
    /// Unlike [`drain_sorted`](Self::drain_sorted), this method does not
    /// clear the invalidation set. It's useful when you need to iterate multiple
    /// times or want to keep the invalidation state.
    #[must_use]
    pub fn peek_sorted(&self, channel: Channel) -> DrainSorted<'_, K> {
        let cap = self.invalidated.len(channel);
        DrainSorted::from_iter_with_capacity(
            self.invalidated.iter(channel),
            cap,
            &self.graph,
            channel,
        )
    }

    /// Clears all invalidated keys in the given channel.
    pub fn clear(&mut self, channel: Channel) {
        self.invalidated.clear(channel);
    }

    /// Clears all invalidated keys in all channels.
    pub fn clear_all(&mut self) {
        self.invalidated.clear_all();
    }

    /// Drains invalidated keys across channels in the given order.
    ///
    /// Within each channel, keys are yielded in topological order (like
    /// [`drain_sorted`](Self::drain_sorted)). Results are tagged with their
    /// channel.
    ///
    /// Channels with no invalidated keys are silently skipped.
    ///
    /// # Example
    ///
    /// ```
    /// use invalidation::{Channel, InvalidationTracker, EagerPolicy};
    ///
    /// const LAYOUT: Channel = Channel::new(0);
    /// const PAINT: Channel = Channel::new(1);
    ///
    /// let mut tracker = InvalidationTracker::<u32>::new();
    /// tracker.add_dependency(2, 1, LAYOUT).unwrap();
    /// tracker.mark_with(1, LAYOUT, &EagerPolicy);
    /// tracker.mark(5, PAINT);
    ///
    /// let results = tracker.drain_channels_sorted(&[LAYOUT, PAINT]);
    /// assert_eq!(results, vec![(LAYOUT, 1), (LAYOUT, 2), (PAINT, 5)]);
    /// ```
    pub fn drain_channels_sorted(&mut self, order: &[Channel]) -> Vec<(Channel, K)> {
        let mut results = Vec::new();
        for &ch in order {
            for key in self.drain_sorted(ch) {
                results.push((ch, key));
            }
        }
        results
    }

    /// Returns all transitive dependents following same-channel edges,
    /// cascades, and cross-channel edges.
    ///
    /// At each visited `(key, channel)` the traversal:
    /// 1. Follows same-channel dependents from the [`InvalidationGraph`].
    /// 2. Applies cascade rules (same key, cascaded channels).
    /// 3. Follows cross-channel edges from [`CrossChannelEdges`].
    ///
    /// The iteration order is not specified and may vary across runs.
    /// The result is collected into a `Vec` to avoid complex iterator
    /// lifetime issues.
    pub fn transitive_dependents_cross(&self, key: K, channel: Channel) -> Vec<(K, Channel)> {
        use hashbrown::HashSet;

        let mut visited = HashSet::new();
        let mut queue = Vec::new();
        let mut result = Vec::new();

        // Seed with (key, channel).
        queue.push((key, channel));
        visited.insert((key, channel));

        while let Some((k, ch)) = queue.pop() {
            // 1. Same-channel dependents.
            for dep in self.graph.dependents(k, ch) {
                if visited.insert((dep, ch)) {
                    result.push((dep, ch));
                    queue.push((dep, ch));
                }
            }

            // 2. Cascade and cross-channel successors.
            self.for_each_cross_successor(k, ch, |next_key, next_ch| {
                if visited.insert((next_key, next_ch)) {
                    result.push((next_key, next_ch));
                    queue.push((next_key, next_ch));
                }
            });
        }

        result
    }

    /// Calls `f` for each cascade or cross-channel successor of `(key, channel)`.
    fn for_each_cross_successor(&self, key: K, channel: Channel, mut f: impl FnMut(K, Channel)) {
        for cascade_ch in self.cascade.cascades_from(channel) {
            f(key, cascade_ch);
        }

        for (to_key, to_ch) in self.cross_channel.dependents(key, channel) {
            f(to_key, to_ch);
        }
    }

    /// Enqueues cascade and cross-channel successors for `mark_with`, skipping
    /// pairs that have already run the propagation policy.
    fn enqueue_cross_successors(
        &self,
        key: K,
        channel: Channel,
        processed: &hashbrown::HashSet<(K, Channel)>,
        worklist: &mut Vec<(K, Channel)>,
    ) {
        self.for_each_cross_successor(key, channel, |to_key, to_ch| {
            if !processed.contains(&(to_key, to_ch)) {
                worklist.push((to_key, to_ch));
            }
        });
    }
}

impl<K> InvalidationTracker<K>
where
    K: Copy + Eq + Hash + Ord + DenseKey,
{
    /// Drains invalidated keys in deterministic topological order.
    ///
    /// This is equivalent to [`drain_sorted`](Self::drain_sorted), but when
    /// multiple keys are simultaneously ready it yields them in ascending key
    /// order (`Ord`).
    pub fn drain_sorted_deterministic(
        &mut self,
        channel: Channel,
    ) -> DrainSortedDeterministic<'_, K> {
        // Keep this as a small, discoverable "easy mode" wrapper.
        //
        // For advanced drain workflows (targeted drains, tracing, scratch reuse),
        // prefer [`InvalidationTracker::drain`](crate::InvalidationTracker::drain).
        self.drain(channel).invalidated_only().deterministic().run()
    }

    /// Drains all affected keys in deterministic topological order.
    ///
    /// This is equivalent to [`drain_affected_sorted`](Self::drain_affected_sorted), but when
    /// multiple keys are simultaneously ready it yields them in ascending key
    /// order (`Ord`).
    pub fn drain_affected_sorted_deterministic(
        &mut self,
        channel: Channel,
    ) -> DrainSortedDeterministic<'_, K> {
        // Keep this as a small, discoverable "easy mode" wrapper.
        //
        // For advanced drain workflows (targeted drains, tracing, scratch reuse),
        // prefer [`InvalidationTracker::drain`](crate::InvalidationTracker::drain).
        self.drain(channel).affected().deterministic().run()
    }

    /// Collects invalidated keys and returns a deterministic [`DrainSortedDeterministic`] iterator.
    ///
    /// Unlike [`drain_sorted_deterministic`](Self::drain_sorted_deterministic), this method does
    /// not clear the invalidation set.
    #[must_use]
    pub fn peek_sorted_deterministic(&self, channel: Channel) -> DrainSortedDeterministic<'_, K> {
        let cap = self.invalidated.len(channel);
        DrainSortedDeterministic::from_iter_with_capacity(
            self.invalidated.iter(channel),
            cap,
            &self.graph,
            channel,
        )
    }
}

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

    use crate::policy::{EagerPolicy, LazyPolicy, PropagationPolicy};

    const LAYOUT: Channel = Channel::new(0);
    const PAINT: Channel = Channel::new(1);

    struct OffGraphMarkPolicy {
        extra_key: u32,
    }

    impl PropagationPolicy<u32> for OffGraphMarkPolicy {
        fn propagate(
            &self,
            key: u32,
            channel: Channel,
            _graph: &InvalidationGraph<u32>,
            invalidated: &mut InvalidationSet<u32>,
        ) {
            invalidated.mark(key, channel);
            invalidated.mark(self.extra_key, channel);
        }
    }

    #[test]
    fn basic_workflow() {
        let mut tracker = InvalidationTracker::<u32>::new();

        // Build graph
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(3, 2, LAYOUT).unwrap();

        // Mark with eager policy
        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(2, LAYOUT));
        assert!(tracker.is_invalidated(3, LAYOUT));

        // Drain in topological order
        let order: Vec<_> = tracker.drain_sorted(LAYOUT).collect();
        assert_eq!(order, vec![1, 2, 3]);

        // Channel is now clean
        assert!(!tracker.has_invalidated(LAYOUT));
    }

    #[test]
    fn can_seed_tracker_from_graph() {
        let mut graph = InvalidationGraph::<u32>::new();
        graph
            .add_dependency(2, 1, LAYOUT, CycleHandling::Error)
            .unwrap();

        let mut tracker =
            InvalidationTracker::from_graph_with_cycle_handling(graph, CycleHandling::Error);

        assert_eq!(tracker.cycle_handling(), CycleHandling::Error);
        assert!(tracker.graph().dependents(1, LAYOUT).any(|key| key == 2));

        tracker.mark_with(1, LAYOUT, &EagerPolicy);
        let order: Vec<_> = tracker.drain_sorted(LAYOUT).collect();
        assert_eq!(order, vec![1, 2]);
    }

    #[test]
    fn can_seed_tracker_with_static_cascades() {
        let mut tracker =
            InvalidationTracker::<u32>::with_cascades([(LAYOUT, PAINT), (PAINT, COMPOSITE)])
                .unwrap();

        tracker.mark(1, LAYOUT);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(1, PAINT));
        assert!(tracker.is_invalidated(1, COMPOSITE));
    }

    #[test]
    fn manual_mark_no_propagation() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();

        // Manual mark - no propagation
        tracker.mark(1, LAYOUT);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(!tracker.is_invalidated(2, LAYOUT));
    }

    #[test]
    fn replace_dependencies_uses_configured_cycle_handling() {
        let mut tracker = InvalidationTracker::<u32>::with_cycle_handling(CycleHandling::Error);

        // Self-dependency is a trivial cycle; this should error when the tracker
        // is configured with `CycleHandling::Error`.
        let err = tracker.replace_dependencies(1, LAYOUT, [1]).unwrap_err();
        assert_eq!(err.from, 1);
        assert_eq!(err.to, 1);
    }

    #[test]
    fn lazy_policy() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(3, 2, LAYOUT).unwrap();

        // Lazy mark - only marks the key itself
        tracker.mark_with(1, LAYOUT, &LazyPolicy);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(!tracker.is_invalidated(2, LAYOUT));
        assert!(!tracker.is_invalidated(3, LAYOUT));
    }

    #[test]
    fn remove_key() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.mark(1, LAYOUT);
        tracker.mark(2, LAYOUT);

        tracker.remove_key(2);

        // Node 2 is gone from both graph and invalidation set
        assert!(!tracker.graph().dependents(1, LAYOUT).any(|_| true));
        assert!(!tracker.is_invalidated(2, LAYOUT));
        assert!(tracker.is_invalidated(1, LAYOUT));
    }

    #[test]
    fn peek_sorted_preserves_state() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.mark(1, LAYOUT);
        tracker.mark(2, LAYOUT);

        // Peek does not clear
        let order: Vec<_> = tracker.peek_sorted(LAYOUT).collect();
        assert_eq!(order, vec![1, 2]);

        // Still invalidated
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(2, LAYOUT));
    }

    #[test]
    fn generation_tracking() {
        let mut tracker = InvalidationTracker::<u32>::new();
        let initial = tracker.generation();

        tracker.mark(1, LAYOUT);
        assert_eq!(tracker.generation(), initial + 1);

        tracker.mark(2, LAYOUT);
        assert_eq!(tracker.generation(), initial + 2);
    }

    #[test]
    fn explicit_cycle_handling_can_override_tracker_default() {
        let mut tracker = InvalidationTracker::<u32>::with_cycle_handling(CycleHandling::Error);

        tracker.add_dependency(2, 1, LAYOUT).unwrap();

        let result = tracker.add_dependency(1, 1, LAYOUT);
        assert!(result.is_err());

        let result = tracker.add_dependency_with(1, 1, LAYOUT, CycleHandling::Ignore);
        assert!(result.is_ok());
    }

    #[test]
    fn multiple_channels() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(2, 1, PAINT).unwrap();

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // Only LAYOUT is invalidated
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(2, LAYOUT));
        assert!(!tracker.is_invalidated(1, PAINT));
        assert!(!tracker.is_invalidated(2, PAINT));

        tracker.mark_with(1, PAINT, &EagerPolicy);

        // Now both are invalidated
        assert!(tracker.is_invalidated(1, PAINT));
        assert!(tracker.is_invalidated(2, PAINT));
    }

    #[test]
    fn clear_specific_channel() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.mark(1, LAYOUT);
        tracker.mark(1, PAINT);

        tracker.clear(LAYOUT);

        assert!(!tracker.has_invalidated(LAYOUT));
        assert!(tracker.has_invalidated(PAINT));
    }

    #[test]
    fn clear_all() {
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.mark(1, LAYOUT);
        tracker.mark(1, PAINT);

        tracker.clear_all();

        assert!(tracker.is_clean());
    }

    const COMPOSITE: Channel = Channel::new(2);

    #[test]
    fn cascade_mark_propagates_to_cascaded_channels() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();

        tracker.mark(1, LAYOUT);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(1, PAINT));
    }

    #[test]
    fn cascade_mark_with_eager_propagates_across_channels() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(2, 1, PAINT).unwrap();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // LAYOUT: 1 and 2 (eager propagation).
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(2, LAYOUT));
        // PAINT: also 1 and 2 (cascade + eager propagation on PAINT).
        assert!(tracker.is_invalidated(1, PAINT));
        assert!(tracker.is_invalidated(2, PAINT));
    }

    #[test]
    fn cascade_mark_with_lazy() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();

        tracker.mark_with(1, LAYOUT, &LazyPolicy);

        // Lazy: only marks the key itself, but on both channels.
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(1, PAINT));
        assert!(!tracker.is_invalidated(2, LAYOUT));
        assert!(!tracker.is_invalidated(2, PAINT));
    }

    #[test]
    fn cascade_transitive_chain() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        tracker.add_cascade(PAINT, COMPOSITE).unwrap();

        tracker.mark(1, LAYOUT);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(1, PAINT));
        assert!(tracker.is_invalidated(1, COMPOSITE));
    }

    #[test]
    fn no_cascade_zero_overhead() {
        // Without cascades, mark should only affect the specified channel.
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.mark(1, LAYOUT);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(!tracker.is_invalidated(1, PAINT));
    }

    #[test]
    fn cascade_add_remove() {
        let mut tracker = InvalidationTracker::<u32>::new();
        assert!(tracker.add_cascade(LAYOUT, PAINT).unwrap());
        assert!(!tracker.add_cascade(LAYOUT, PAINT).unwrap()); // duplicate

        assert!(tracker.remove_cascade(LAYOUT, PAINT));
        assert!(!tracker.remove_cascade(LAYOUT, PAINT)); // already removed

        // After removal, no cascade.
        tracker.mark(1, LAYOUT);
        assert!(!tracker.is_invalidated(1, PAINT));
    }

    #[test]
    fn cascade_accessor() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        assert!(tracker.cascade().cascades_from(LAYOUT).contains(PAINT));
    }

    #[test]
    fn cross_channel_mark_with_follows_edges() {
        let mut tracker = InvalidationTracker::<u32>::new();
        // Node 1's LAYOUT output feeds node 2's PAINT input.
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // Node 1 on LAYOUT.
        assert!(tracker.is_invalidated(1, LAYOUT));
        // Node 2 on PAINT (via cross-channel edge).
        assert!(tracker.is_invalidated(2, PAINT));
    }

    #[test]
    fn cross_channel_with_same_channel_deps() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_dependency(3, 2, PAINT).unwrap();
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // Cross-channel: 2 on PAINT, then same-channel: 3 on PAINT.
        assert!(tracker.is_invalidated(2, PAINT));
        assert!(tracker.is_invalidated(3, PAINT));
    }

    #[test]
    fn cross_channel_with_cascade() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        tracker.add_cross_dependency(1, PAINT, 2, COMPOSITE);

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // LAYOUT -> PAINT cascade marks 1 on PAINT.
        assert!(tracker.is_invalidated(1, PAINT));
        // Cross-channel from (1, PAINT) -> (2, COMPOSITE).
        assert!(tracker.is_invalidated(2, COMPOSITE));
    }

    #[test]
    fn cross_channel_remove_edge() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        assert!(tracker.remove_cross_dependency(1, LAYOUT, 2, PAINT));
        assert!(!tracker.remove_cross_dependency(1, LAYOUT, 2, PAINT));

        tracker.mark_with(1, LAYOUT, &EagerPolicy);
        assert!(!tracker.is_invalidated(2, PAINT));
    }

    #[test]
    fn cross_channel_replace_dependents() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        tracker.add_cross_dependency(1, LAYOUT, 3, COMPOSITE);

        assert!(tracker.replace_cross_dependents(1, LAYOUT, [(3, COMPOSITE), (4, PAINT)]));
        assert!(!tracker.replace_cross_dependents(1, LAYOUT, [(4, PAINT), (3, COMPOSITE)]));

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        assert!(!tracker.is_invalidated(2, PAINT));
        assert!(tracker.is_invalidated(3, COMPOSITE));
        assert!(tracker.is_invalidated(4, PAINT));
    }

    #[test]
    fn cross_channel_clear_dependents_and_dependencies() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(1, LAYOUT, 3, PAINT);
        tracker.add_cross_dependency(2, COMPOSITE, 3, PAINT);

        assert!(tracker.clear_cross_dependents(1, LAYOUT));
        assert!(!tracker.clear_cross_dependents(1, LAYOUT));
        assert!(
            tracker
                .cross_channel()
                .dependencies(3, PAINT)
                .eq([(2, COMPOSITE)])
        );

        assert!(tracker.clear_cross_dependencies(3, PAINT));
        assert!(!tracker.clear_cross_dependencies(3, PAINT));
        assert!(
            tracker
                .cross_channel()
                .dependents(2, COMPOSITE)
                .next()
                .is_none()
        );
    }

    #[test]
    fn cross_channel_remove_key_cleans_edges() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        tracker.mark(1, LAYOUT);

        tracker.remove_key(1);

        // Cross-channel edges are cleaned up.
        assert!(
            tracker
                .cross_channel()
                .dependents(1, LAYOUT)
                .next()
                .is_none()
        );
    }

    #[test]
    fn cross_channel_accessor() {
        let mut tracker = InvalidationTracker::<u32>::new();
        assert!(tracker.cross_channel().is_empty());
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        assert!(!tracker.cross_channel().is_empty());
    }

    #[test]
    fn drain_channels_sorted_basic() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.mark_with(1, LAYOUT, &EagerPolicy);
        tracker.mark(5, PAINT);

        let results = tracker.drain_channels_sorted(&[LAYOUT, PAINT]);
        assert_eq!(results, vec![(LAYOUT, 1), (LAYOUT, 2), (PAINT, 5)]);
    }

    #[test]
    fn drain_channels_sorted_empty_channels_skipped() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.mark(1, PAINT);

        let results = tracker.drain_channels_sorted(&[LAYOUT, PAINT]);
        assert_eq!(results, vec![(PAINT, 1)]);
    }

    #[test]
    fn drain_channels_sorted_respects_order() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.mark(1, LAYOUT);
        tracker.mark(2, PAINT);

        // PAINT first, then LAYOUT.
        let results = tracker.drain_channels_sorted(&[PAINT, LAYOUT]);
        assert_eq!(results, vec![(PAINT, 2), (LAYOUT, 1)]);
    }

    #[test]
    fn drain_channels_sorted_clears_channels() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.mark(1, LAYOUT);
        tracker.mark(2, PAINT);

        let _ = tracker.drain_channels_sorted(&[LAYOUT, PAINT]);

        assert!(!tracker.has_invalidated(LAYOUT));
        assert!(!tracker.has_invalidated(PAINT));
    }

    #[test]
    fn transitive_dependents_cross_same_channel_only() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(3, 2, LAYOUT).unwrap();

        let deps = tracker.transitive_dependents_cross(1, LAYOUT);
        assert_eq!(deps.len(), 2);
        assert!(deps.contains(&(2, LAYOUT)));
        assert!(deps.contains(&(3, LAYOUT)));
    }

    #[test]
    fn transitive_dependents_cross_with_cascade() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        tracker.add_dependency(2, 1, PAINT).unwrap();

        let deps = tracker.transitive_dependents_cross(1, LAYOUT);
        // Cascade: (1, LAYOUT) -> (1, PAINT).
        // Same-channel on PAINT: (1, PAINT) -> (2, PAINT).
        assert!(deps.contains(&(1, PAINT)));
        assert!(deps.contains(&(2, PAINT)));
    }

    #[test]
    fn transitive_dependents_cross_with_cross_edges() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        tracker.add_dependency(3, 2, PAINT).unwrap();

        let deps = tracker.transitive_dependents_cross(1, LAYOUT);
        // Cross-channel: (1, LAYOUT) -> (2, PAINT).
        // Same-channel on PAINT: (2, PAINT) -> (3, PAINT).
        assert!(deps.contains(&(2, PAINT)));
        assert!(deps.contains(&(3, PAINT)));
    }

    #[test]
    fn transitive_dependents_cross_combined() {
        let mut tracker = InvalidationTracker::<u32>::new();
        // Same-channel deps on LAYOUT.
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        // Cascade LAYOUT -> PAINT.
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        // Cross-channel: (2, LAYOUT) -> (3, COMPOSITE).
        tracker.add_cross_dependency(2, LAYOUT, 3, COMPOSITE);

        let deps = tracker.transitive_dependents_cross(1, LAYOUT);

        // Same-channel: (2, LAYOUT).
        assert!(deps.contains(&(2, LAYOUT)));
        // Cascade: (1, PAINT), (2, PAINT) (from visiting 1 and 2 on LAYOUT).
        assert!(deps.contains(&(1, PAINT)));
        assert!(deps.contains(&(2, PAINT)));
        // Cross-channel: (3, COMPOSITE).
        assert!(deps.contains(&(3, COMPOSITE)));
    }

    #[test]
    fn transitive_dependents_cross_no_duplicates() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();

        // Diamond: both cascade and cross-channel lead to (1, PAINT).
        tracker.add_cross_dependency(1, LAYOUT, 1, PAINT);

        let deps = tracker.transitive_dependents_cross(1, LAYOUT);
        // (1, PAINT) should appear exactly once.
        let paint_count = deps
            .iter()
            .filter(|&&(k, ch)| k == 1 && ch == PAINT)
            .count();
        assert_eq!(paint_count, 1);
    }

    #[test]
    fn cross_channel_from_propagated_dependent_not_just_root() {
        // Bug regression: cross-channel edges from eagerly-propagated
        // (non-root) keys must fire, not just edges from the root.
        let mut tracker = InvalidationTracker::<u32>::new();

        // 0 -> 1 on LAYOUT (1 depends on 0).
        tracker.add_dependency(1, 0, LAYOUT).unwrap();
        // Cross-channel edge from key 1 (not the root!).
        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);

        tracker.mark_with(0, LAYOUT, &EagerPolicy);

        // Eager propagation marks 0 and 1 on LAYOUT.
        assert!(tracker.is_invalidated(0, LAYOUT));
        assert!(tracker.is_invalidated(1, LAYOUT));
        // The cross-channel edge from (1, LAYOUT) must fire.
        assert!(
            tracker.is_invalidated(2, PAINT),
            "cross-channel edge from propagated dependent must fire"
        );
    }

    #[test]
    fn cascade_applies_to_all_propagated_dependents_not_just_root() {
        // Bug regression: when eager propagation marks dependents, cascades
        // must apply to ALL of them, not just the root key.
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        // Both 1 and 2 are marked on LAYOUT (eager propagation).
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(2, LAYOUT));
        // Cascade must apply to BOTH keys, not just root.
        assert!(
            tracker.is_invalidated(1, PAINT),
            "cascade must apply to root"
        );
        assert!(
            tracker.is_invalidated(2, PAINT),
            "cascade must apply to propagated dependent"
        );
    }

    #[test]
    fn cascade_fires_from_cross_channel_target() {
        // Cross-channel edge leads to (2, PAINT), and PAINT cascades to
        // COMPOSITE. The cascade on the target channel must fire.
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        tracker.add_cascade(PAINT, COMPOSITE).unwrap();

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        assert!(tracker.is_invalidated(2, PAINT));
        assert!(
            tracker.is_invalidated(2, COMPOSITE),
            "cascade on cross-channel target channel must fire"
        );
    }

    #[test]
    fn chained_cross_channel_edges() {
        // (1, LAYOUT) -> (2, PAINT) -> (3, COMPOSITE)
        // mark_with(1, LAYOUT) must realize the full chain.
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_cross_dependency(1, LAYOUT, 2, PAINT);
        tracker.add_cross_dependency(2, PAINT, 3, COMPOSITE);

        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        assert!(tracker.is_invalidated(2, PAINT));
        assert!(
            tracker.is_invalidated(3, COMPOSITE),
            "chained cross-channel edges must be followed transitively"
        );
    }

    #[test]
    fn mark_with_parity_with_transitive_dependents_cross() {
        // The mark-time closure must match the query-time closure.
        // Every (key, channel) returned by transitive_dependents_cross
        // must be invalidated after mark_with with eager policy.
        let mut tracker = InvalidationTracker::<u32>::new();

        // Build a complex graph.
        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_dependency(3, 2, LAYOUT).unwrap();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        tracker.add_cross_dependency(2, LAYOUT, 4, COMPOSITE);
        tracker.add_cross_dependency(4, COMPOSITE, 5, PAINT);
        tracker.add_dependency(6, 5, PAINT).unwrap();

        // Query the expected closure.
        let expected = tracker.transitive_dependents_cross(1, LAYOUT);

        // Mark and verify parity.
        tracker.mark_with(1, LAYOUT, &EagerPolicy);

        for (k, ch) in &expected {
            assert!(
                tracker.is_invalidated(*k, *ch),
                "mark_with must realize ({k}, {ch:?}) from transitive_dependents_cross"
            );
        }
    }

    #[test]
    fn lazy_policy_does_not_cascade_or_cross_channel_dependents() {
        // With lazy policy, only the root key is marked. Dependents are
        // NOT marked, so cascades/cross-channel from dependents must NOT fire.
        let mut tracker = InvalidationTracker::<u32>::new();

        tracker.add_dependency(2, 1, LAYOUT).unwrap();
        tracker.add_cascade(LAYOUT, PAINT).unwrap();
        tracker.add_cross_dependency(2, LAYOUT, 3, COMPOSITE);

        tracker.mark_with(1, LAYOUT, &LazyPolicy);

        // Root key 1 is marked on LAYOUT and cascaded to PAINT.
        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(1, PAINT));
        // Key 2 is NOT marked (lazy doesn't propagate).
        assert!(!tracker.is_invalidated(2, LAYOUT));
        // Cross-channel from (2, LAYOUT) must NOT fire (2 not invalidated).
        assert!(!tracker.is_invalidated(3, COMPOSITE));
    }

    #[test]
    fn custom_policy_off_graph_marks_do_not_trigger_cross_channel_follow_up() {
        let mut tracker = InvalidationTracker::<u32>::new();
        tracker.add_cross_dependency(9, LAYOUT, 10, PAINT);

        let policy = OffGraphMarkPolicy { extra_key: 9 };
        tracker.mark_with(1, LAYOUT, &policy);

        assert!(tracker.is_invalidated(1, LAYOUT));
        assert!(tracker.is_invalidated(9, LAYOUT));
        assert!(
            !tracker.is_invalidated(10, PAINT),
            "cross-channel traversal is not defined for off-graph keys marked by a custom policy"
        );
    }
}