mt_sea 0.9.0

Primitives for a Minot network.
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
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
use std::time::Instant;

use crate::net::NetArray;
use anyhow::anyhow;
use log::{debug, error, info, warn};
use rkyv::{api::high::from_bytes, to_bytes, util::AlignedVec};
use tokio::time::{Duration, timeout};
use tokio_util::sync::CancellationToken;
use zenoh::Wait;

use crate::{
    ArchivedMessage, HEARTBEAT_SUPPRESS_MS, PEER_DEAD_THRESHOLD, REGISTRATION_TIMEOUT_MS, Sendable,
    ShipKind, VariableType,
    client::Client,
    net::{PacketKind, Qos, sanitize_key},
};

/// One in-flight asynchronously dispatched send, identified by target *and*
/// variable. Covers every mode where `Qos::dispatch_is_async` holds, so both
/// `TryReliable` and `BestEffort`.
///
/// Keying on the target alone would make every variable sent to one ship share
/// a single slot for the whole network round trip, so two publishes in the same
/// frame would starve each other: the loser is dropped before serialization.
/// That is invisible on loopback, where the first send completes in
/// microseconds, and deterministic over WiFi.
type AsyncSendKey = (String, String);

struct AsyncSendGuard {
    key: AsyncSendKey,
    in_flight: Arc<std::sync::Mutex<HashSet<AsyncSendKey>>>,
}

impl AsyncSendGuard {
    fn try_acquire(
        in_flight: Arc<std::sync::Mutex<HashSet<AsyncSendKey>>>,
        target_ship_name: String,
        variable_name: String,
    ) -> Option<Self> {
        let key = (target_ship_name, variable_name);
        if !in_flight.lock().unwrap().insert(key.clone()) {
            return None;
        }
        Some(Self { key, in_flight })
    }
}

impl Drop for AsyncSendGuard {
    fn drop(&mut self) {
        self.in_flight.lock().unwrap().remove(&self.key);
    }
}

#[derive(Debug)]
pub struct NetworkShipImpl {
    pub client: Arc<tokio::sync::Mutex<Client>>,
    pub last_send: Arc<tokio::sync::Mutex<Instant>>,
    /// Runtime captured during initialization because `shoot` can be invoked
    /// from an ordinary worker thread with no entered Tokio context.
    runtime_handle: tokio::runtime::Handle,
    /// Cancelled when the coordinator connection is lost.
    pub disconnect: CancellationToken,
    /// (target, variable) pairs that already have one asynchronous delivery in
    /// progress. A new message for a busy pair is dropped before serialization;
    /// other variables to the same target are unaffected.
    async_sends_in_flight: Arc<std::sync::Mutex<HashSet<AsyncSendKey>>>,
    /// Cached routing decisions pushed by the coordinator.
    route_cache: Arc<std::sync::RwLock<HashMap<String, (crate::Action, bool)>>>,
    /// Active peer-monitor tasks: ship_name → abort handle.
    peer_monitor: Arc<std::sync::RwLock<HashMap<String, tokio::task::AbortHandle>>>,
    /// When true, skip the route cache in ask_for_action and always send VariableTaskRequest.
    /// Set for ShipKind::Rat so the coordinator handler runs (TUI catch, comparison loop, etc).
    bypass_cache: bool,
}

#[async_trait::async_trait]
impl crate::Cannon for NetworkShipImpl {
    async fn shoot<'b, T: Sendable>(
        &self,
        targets: &'b [crate::NetworkShipAddress],
        id: u32,
        data: &T,
        variable_type: VariableType,
        variable_name: &str,
    ) -> anyhow::Result<()> {
        // The archived representation is identical for every target. Keep one aligned
        // allocation alive across the whole fan-out instead of serializing per target.
        let data_bytes =
            Arc::new(to_bytes::<rkyv::rancor::Error>(data).expect("Could not serialize data"));

        for target in targets.iter() {
            let target_ship_name = match &target.kind {
                ShipKind::Rat(name) => name.clone(),
                ShipKind::Wind(name) => name.clone(),
            };

            let target_mode = target.node_mode;
            if target_mode.dispatch_is_async() {
                // Guard per (target, variable): one delivery of this variable to
                // this ship at a time. Keying on the target alone would let two
                // variables published in the same frame starve each other for a
                // whole network round trip.
                let Some(send_guard) = AsyncSendGuard::try_acquire(
                    Arc::clone(&self.async_sends_in_flight),
                    target_ship_name.clone(),
                    variable_name.to_string(),
                ) else {
                    debug!(
                        "Dropping {:?} message '{}' for '{}': send already in progress",
                        target_mode, variable_name, target_ship_name
                    );
                    continue;
                };
                let (session, domain_id) = {
                    let c = self.client.lock().await;
                    (c.session(), c.domain_id())
                };
                let variable_name = variable_name.to_string();
                let data_bytes = Arc::clone(&data_bytes);
                // Both modes dispatch off the caller's thread so a slow link can
                // never wedge a publisher's loop. They differ in what happens on
                // the wire: BestEffort tries once, TryReliable retries until its
                // budget is spent.
                let (send_budget, is_reliable_mode) = match target_mode {
                    Qos::TryReliable => (
                        Duration::from_millis(crate::TRY_RELIABLE_SEND_BUDGET_MS)
                            + Duration::from_secs(1),
                        true,
                    ),
                    _ => (Duration::from_secs(5), false),
                };
                self.runtime_handle.spawn(async move {
                    let send = async {
                        if is_reliable_mode {
                            Client::send_raw_network_bounded(
                                session,
                                domain_id,
                                id,
                                data_bytes,
                                variable_type,
                                variable_name.clone(),
                                target_ship_name.clone(),
                            )
                            .await
                        } else {
                            Client::send_raw_network(
                                session,
                                domain_id,
                                id,
                                data_bytes,
                                variable_type,
                                variable_name.clone(),
                                target_ship_name.clone(),
                            )
                            .await
                        }
                    };
                    // Backstop only: each send path already bounds itself.
                    match tokio::time::timeout(send_budget, send).await {
                        Ok(Ok(())) => {}
                        // What failed and to whom is the whole of what a
                        // warning is for here. The chain underneath is Zenoh
                        // describing a query that timed out, which says nothing
                        // a reader of the warning did not already know — and a
                        // peer going away turns every publisher into a source
                        // of it at once.
                        Ok(Err(e)) => {
                            warn!(
                                "{:?} send '{}' to '{}' failed",
                                target_mode, variable_name, target_ship_name
                            );
                            debug!(
                                "{:?} send '{}' to '{}' failed: {e:#}",
                                target_mode, variable_name, target_ship_name
                            );
                        }
                        Err(_) => warn!(
                            "{:?} send '{}' to '{}' timed out",
                            target_mode, variable_name, target_ship_name
                        ),
                    }
                    drop(send_guard);
                });
            } else {
                let client = self.client.lock().await;
                client
                    .send_raw_to_other_client(
                        id,
                        data_bytes.as_slice(),
                        variable_type,
                        variable_name,
                        &target_ship_name,
                    )
                    .await?;
            }
        }
        Ok(())
    }

    /// Catch the dumped data from the source.
    async fn catch<T: Sendable>(&self, id: u32) -> anyhow::Result<Vec<T>> {
        self.catch_archived::<T>(id)
            .await?
            .into_iter()
            .map(|message| message.deserialize())
            .collect()
    }

    async fn catch_archived<T: Sendable>(
        &self,
        id: u32,
    ) -> anyhow::Result<Vec<ArchivedMessage<T>>> {
        let (buf, mut update_chan) = {
            let client = self.client.lock().await;
            let buf = std::sync::Arc::clone(&client.raw_recv_buff);
            let update_chan = client.updated_raw_recv.subscribe();
            (buf, update_chan)
        };

        // Loop until we get data for our id
        // We must check the buffer on EVERY iteration because notifications
        // might have been sent before we started waiting on the channel
        loop {
            // Check if data is already in buffer
            let data_opt = {
                let mut buf_lock = buf.write().unwrap();
                buf_lock.remove(&id)
            };

            if let Some(data_vec) = data_opt {
                return data_vec
                    .into_iter()
                    .map(|(raw, _, _)| ArchivedMessage::from_aligned_bytes(raw))
                    .collect();
            }

            // No data yet - wait for notification
            // Use recv() which blocks until a message arrives
            // If we miss a notification, the next iteration will check the buffer again
            match update_chan.recv().await {
                Ok(update_id) => {
                    if update_id == id {
                        // Our data might be ready, loop back to check buffer
                        continue;
                    }
                    // Not our id, keep waiting
                }
                Err(tokio::sync::broadcast::error::RecvError::Lagged(n)) => {
                    // We missed some messages - that's fine, just check the buffer
                    debug!("Catch receiver lagged by {} messages, checking buffer", n);
                    continue;
                }
                Err(tokio::sync::broadcast::error::RecvError::Closed) => {
                    return Err(anyhow!("Update channel closed while waiting for data"));
                }
            }
        }
    }

    async fn catch_dyn(&self, id: u32) -> anyhow::Result<Vec<(String, VariableType, String)>> {
        fn to_dyn_str(var_type: VariableType, buf: AlignedVec) -> anyhow::Result<String> {
            Ok(match var_type {
                VariableType::StaticOnly => {
                    return Err(anyhow!(
                        "Received Variable without dynamic type info, could not decode."
                    ));
                }
                VariableType::U8 => {
                    let deserialized = from_bytes::<NetArray<u8>, rkyv::rancor::Error>(&buf)?;
                    let mat: nalgebra::DMatrix<u8> = deserialized.into();
                    format!("{:?}", mat)
                }
                VariableType::I32 => {
                    let deserialized = from_bytes::<NetArray<i32>, rkyv::rancor::Error>(&buf)?;
                    let mat: nalgebra::DMatrix<i32> = deserialized.into();
                    format!("{:?}", mat)
                }
                VariableType::F32 => {
                    let deserialized = from_bytes::<NetArray<f32>, rkyv::rancor::Error>(&buf)?;
                    let mat: nalgebra::DMatrix<f32> = deserialized.into();
                    format!("{:?}", mat)
                }
                VariableType::F64 => {
                    let deserialized = from_bytes::<NetArray<f64>, rkyv::rancor::Error>(&buf)?;
                    let mat: nalgebra::DMatrix<f64> = deserialized.into();
                    format!("{:?}", mat)
                }
            })
        }

        let (buf, mut update_chan) = {
            let client = self.client.lock().await;
            let buf = std::sync::Arc::clone(&client.raw_recv_buff);
            let update_chan = client.updated_raw_recv.subscribe();
            (buf, update_chan)
        };

        // Loop until we get data for our id
        // We must check the buffer on EVERY iteration because notifications
        // might have been sent before we started waiting on the channel
        loop {
            // Check if data is already in buffer
            let data_opt = {
                let mut buf_lock = buf.write().unwrap();
                buf_lock.remove(&id)
            };

            if let Some(data_vec) = data_opt {
                // Data found - convert and return
                let mut out_buf = Vec::with_capacity(data_vec.len());
                for (raw, var_type, var_name) in data_vec {
                    out_buf.push((to_dyn_str(var_type, raw)?, var_type, var_name));
                }
                return Ok(out_buf);
            }

            // No data yet - wait for notification
            match update_chan.recv().await {
                Ok(update_id) => {
                    if update_id == id {
                        // Our data might be ready, loop back to check buffer
                        continue;
                    }
                    // Not our id, keep waiting
                }
                Err(tokio::sync::broadcast::error::RecvError::Lagged(n)) => {
                    // We missed some messages - that's fine, just check the buffer
                    debug!(
                        "Catch_dyn receiver lagged by {} messages, checking buffer",
                        n
                    );
                    continue;
                }
                Err(tokio::sync::broadcast::error::RecvError::Closed) => {
                    return Err(anyhow!("Update channel closed while waiting for data"));
                }
            }
        }
    }
}

#[async_trait::async_trait]
impl crate::Ship for NetworkShipImpl {
    async fn ask_for_action(&self, variable_name: &str) -> anyhow::Result<(crate::Action, bool)> {
        // Fast path — use cached route if available (coordinator pushes updates proactively).
        // Bypassed for ShipKind::Rat so VariableTaskRequest always reaches the coordinator
        // (required for TUI catch, comparison loop, and RatAction{Shoot} delivery).
        if !self.bypass_cache {
            if let Some(cached) = self.route_cache.read().unwrap().get(variable_name).cloned() {
                debug!("ask_for_action: cache hit for {}", variable_name);
                return Ok(cached);
            }
        }

        debug!(
            "ask_for_action: cache miss for {}, asking coordinator",
            variable_name
        );

        let client = self.client.lock().await;
        let coord_send = client.coordinator_send.read().unwrap().clone();
        if let Some(sender) = coord_send {
            let action_request = crate::net::Packet {
                header: crate::net::Header::default(),
                data: PacketKind::VariableTaskRequest(variable_name.to_string()),
            };

            // Subscribe BEFORE sending request to avoid race condition
            let mut sub = client
                .coordinator_receive
                .read()
                .unwrap()
                .as_ref()
                .map(|sub| sub.subscribe())
                .ok_or(anyhow!(
                    "Sender to Coordinator is available but Receiver is not."
                ))?;

            // Release client lock before sending to avoid deadlock
            drop(client);

            // Send the request
            sender.send(action_request).await?;

            // Wait for the response matching our variable
            loop {
                match sub.recv().await {
                    Ok((packet, _)) => {
                        match packet.data {
                            PacketKind::RatAction {
                                variable,
                                action,
                                lock_until_ack,
                            } => {
                                // Cache every RatAction we see (background task also does this,
                                // but caching here covers the first-call slow path).
                                self.route_cache
                                    .write()
                                    .unwrap()
                                    .insert(variable.clone(), (action.clone(), lock_until_ack));
                                if variable == variable_name {
                                    return Ok((action, lock_until_ack));
                                }
                                // Wrong variable, keep waiting
                            }
                            PacketKind::RegistrationError(msg) => {
                                return Err(anyhow!("{}", msg));
                            }
                            _ => {
                                // Not a RatAction or RegistrationError, keep waiting
                            }
                        }
                    }
                    Err(tokio::sync::broadcast::error::RecvError::Lagged(n)) => {
                        log::warn!(
                            "ask_for_action receiver lagged by {} messages, continuing",
                            n
                        );
                        continue;
                    }
                    Err(e) => {
                        return Err(anyhow!(
                            "Could not receive answer for variable question from coordinator: {e}"
                        ));
                    }
                }
            }
        } else {
            drop(client);
            tokio::task::yield_now().await;
            return self.ask_for_action(variable_name).await;
        }
    }

    fn get_cannon(&self) -> &impl crate::Cannon {
        self
    }

    async fn wait_for_wind(&self) -> anyhow::Result<Vec<crate::WindData>> {
        // Get the wind receiver and coordinator sender from client
        let (wind_receiver, coord_send) = {
            let client = self.client.lock().await;
            let receiver = std::sync::Arc::clone(&client.wind_receiver);
            let sender = client.coordinator_send.read().unwrap().clone();
            (receiver, sender)
        };

        let sender = coord_send.ok_or(anyhow!("Coordinator send not available"))?;

        // Lock the wind receiver and wait for the next packet
        let mut receiver = wind_receiver.lock().await;
        match receiver.recv().await {
            Some(packet) => {
                if let PacketKind::Wind(bwd) = packet.data {
                    // Send ack to coordinator
                    sender
                        .send(crate::net::Packet {
                            header: crate::net::Header::default(),
                            data: PacketKind::Acknowledge,
                        })
                        .await
                        .map_err(|e| anyhow!("Failed to send wind ack: {}", e))?;
                    return Ok(bwd.into_iter().map(|wa| wa.data).collect::<Vec<_>>());
                } else {
                    return Err(anyhow!("Expected Wind packet but got something else"));
                }
            }
            None => {
                return Err(anyhow!("Wind channel closed"));
            }
        }
    }
}

/// Extract peer ship names that must be monitored given a route action.
/// Names in `NetworkShipAddress` are padded by the coordinator (64-char `#` suffix).
/// Strip that padding so the name matches the heartbeat queryable key declared by the peer.
fn extract_peers(action: &crate::Action) -> HashSet<String> {
    fn unpad(name: &str) -> String {
        name.trim_end_matches('#').to_string()
    }
    match action {
        crate::Action::Sail => HashSet::new(),
        crate::Action::Shoot { target, .. } => target
            .iter()
            .filter(|addr| addr.node_mode.is_monitored())
            .map(|addr| match &addr.kind {
                crate::ShipKind::Rat(name) | crate::ShipKind::Wind(name) => unpad(name),
            })
            .collect(),
        crate::Action::Catch { source, .. } => {
            if !source.node_mode.is_monitored() {
                return HashSet::new();
            }
            let name = match &source.kind {
                crate::ShipKind::Rat(name) | crate::ShipKind::Wind(name) => unpad(name),
            };
            std::iter::once(name).collect()
        }
    }
}

/// Send a Zenoh query to a peer's heartbeat key and return Ok if a reply arrives.
async fn ping_peer(session: &zenoh::Session, key: &str) -> anyhow::Result<()> {
    let replies = session
        .get(key)
        .priority(zenoh::qos::Priority::DataHigh)
        .wait()
        .map_err(|e| anyhow!("ping_peer: failed to send query: {}", e))?;
    replies
        .recv_async()
        .await
        .map_err(|_| anyhow!("ping_peer: no reply received"))?
        .result()
        .map(|_| ())
        .map_err(|_| anyhow!("ping_peer: peer replied with error"))
}

/// Continuously ping a peer; send `PeerDead` to the coordinator after
/// `PEER_DEAD_THRESHOLD` consecutive failures, then cancel the local disconnect
/// token so this node shuts down even if the coordinator is already gone.
async fn monitor_peer(
    session: Arc<zenoh::Session>,
    domain_id: u16,
    peer_name: String,
    coord_tx: tokio::sync::mpsc::Sender<crate::net::Packet>,
    disconnect: CancellationToken,
) {
    let key = format!("minot/{}/heartbeat/{}", domain_id, sanitize_key(&peer_name));
    let interval = Duration::from_millis(crate::HEARTBEAT_INTERVAL_MS);
    let timeout_dur = Duration::from_millis(crate::DISCONNECT_TIMEOUT_MS);
    let mut consecutive_failures = 0u32;

    loop {
        tokio::time::sleep(interval).await;

        let alive = tokio::time::timeout(timeout_dur, ping_peer(&session, &key))
            .await
            .is_ok_and(|r| r.is_ok());

        if alive {
            consecutive_failures = 0;
        } else {
            consecutive_failures += 1;
            if consecutive_failures >= PEER_DEAD_THRESHOLD {
                warn!(
                    "Peer {} declared dead after {} consecutive ping failures",
                    peer_name, consecutive_failures
                );
                let packet = crate::net::Packet {
                    header: crate::net::Header::default(),
                    data: PacketKind::PeerDead {
                        ship: peer_name.clone(),
                    },
                };
                // Best-effort notify coordinator; may fail if it is also gone.
                coord_tx.send(packet).await.ok();
                // Cancel local disconnect so this node shuts down regardless of
                // whether the coordinator is still alive to send a torpedo back.
                disconnect.cancel();
                return;
            }
        }
    }
}

impl NetworkShipImpl {
    #[allow(dead_code)]
    async fn spawn_recursive_rejoin_task(
        disconnect_handle: tokio::sync::oneshot::Receiver<()>,
        client: Arc<tokio::sync::Mutex<Client>>,
    ) {
        match disconnect_handle.await {
            Err(e) => {
                error!("Error receiving disconnect signal: {e}");
            }
            Ok(_) => {
                let res = { client.lock().await.register().await };
                match res {
                    Err(e) => {
                        error!("Could not register after dropped connection: {e}");
                    }
                    Ok(recv) => {
                        info!("Reconnected");
                        Box::pin(Self::spawn_recursive_rejoin_task(recv, client)).await;
                    }
                }
            }
        }
    }

    /// Keep the coordinator's handler for this client alive while it is idle.
    ///
    /// The coordinator drops any client that sends nothing for
    /// `DISCONNECT_TIMEOUT_MS` and tears down the task that answers its variable
    /// requests, so a ship that only speaks when it has something to say hangs
    /// forever on its next request after a long pause. Every ship must run this,
    /// and exactly once: `init` deliberately does not start it, so the owner of
    /// the `Arc` decides. The task ends when the connection is lost.
    ///
    /// Cost is one small packet per `HEARTBEAT_INTERVAL_MS`. `send_heartbeat`
    /// only suppresses itself after another `send_heartbeat` or a `send_wind`;
    /// variable requests and pub/sub publishes do not touch `last_send`, so a
    /// busy ship still beats on schedule. That is deliberate — the peer's own
    /// disconnect detector arms on heartbeat echoes, so a ship that fell silent
    /// because it was busy publishing would lose its view of the coordinator.
    pub fn spawn_heartbeat(self: &std::sync::Arc<Self>) -> tokio::task::JoinHandle<()> {
        let ship = std::sync::Arc::clone(self);
        let disconnect = ship.disconnect.clone();
        tokio::spawn(async move {
            let interval = Duration::from_millis(crate::HEARTBEAT_INTERVAL_MS);
            loop {
                tokio::select! {
                    _ = tokio::time::sleep(interval) => {
                        if let Err(e) = ship.send_heartbeat().await {
                            debug!("Failed to send heartbeat: {e}");
                        }
                    }
                    _ = disconnect.cancelled() => return,
                }
            }
        })
    }

    /// Send a heartbeat to the coordinator if enough time has elapsed since the last send.
    /// Returns Ok(Some(())) if sent, Ok(None) if skipped (too soon), Err on failure.
    pub async fn send_heartbeat(&self) -> anyhow::Result<Option<()>> {
        let elapsed = self.last_send.lock().await.elapsed();
        if elapsed < Duration::from_millis(HEARTBEAT_SUPPRESS_MS) {
            return Ok(None);
        }

        let coord_send = {
            let client = self.client.lock().await;
            client.coordinator_send.read().unwrap().clone()
        };

        if let Some(sender) = coord_send {
            let packet = crate::net::Packet {
                header: crate::net::Header::default(),
                data: PacketKind::Heartbeat,
            };
            sender.send(packet).await?;
            *self.last_send.lock().await = Instant::now();
            Ok(Some(()))
        } else {
            Ok(None)
        }
    }

    pub async fn send_wind(&self, messages: Vec<crate::net::WindAt>) -> anyhow::Result<()> {
        let sender = {
            let client = self.client.lock().await;
            client.coordinator_send.read().unwrap().clone()
        };
        if let Some(sender) = sender {
            sender
                .send(crate::net::Packet {
                    header: crate::net::Header::default(),
                    data: crate::net::PacketKind::Wind(messages),
                })
                .await?;
            *self.last_send.lock().await = Instant::now();
        }
        Ok(())
    }

    pub async fn init(
        kind: ShipKind,
        rm_rules_on_disconnect: bool,
        node_mode: Qos,
    ) -> anyhow::Result<Self> {
        Self::init_with_coord_start(kind, rm_rules_on_disconnect, node_mode, |_| async {}).await
    }

    /// Like `init`, but on registration timeout calls `start_coord` and retries once.
    ///
    /// The `Client` is created only once and reused for the retry, so no background
    /// tasks are dropped between attempts (avoiding spurious channel-closed errors).
    pub async fn init_with_coord_start<F, Fut>(
        kind: ShipKind,
        rm_rules_on_disconnect: bool,
        node_mode: Qos,
        start_coord: F,
    ) -> anyhow::Result<Self>
    where
        F: FnOnce(Option<tokio::sync::mpsc::Sender<()>>) -> Fut,
        Fut: std::future::Future<Output = ()>,
    {
        Self::init_with_coord_start_impl(
            kind,
            rm_rules_on_disconnect,
            node_mode,
            move |tx| async move {
                start_coord(tx).await;
                Ok(())
            },
        )
        .await
    }

    /// Like `init_with_coord_start`, retained as the explicit auto-start entry point.
    ///
    /// Coordinator startup is triggered only by registration timeout. A failure to
    /// open the client session may be unrelated to coordinator availability and is
    /// therefore returned unchanged.
    pub async fn init_with_coord_auto_start<F, Fut>(
        kind: ShipKind,
        rm_rules_on_disconnect: bool,
        node_mode: Qos,
        start_coord: F,
    ) -> anyhow::Result<Self>
    where
        F: FnOnce(Option<tokio::sync::mpsc::Sender<()>>) -> Fut,
        Fut: std::future::Future<Output = anyhow::Result<()>>,
    {
        Self::init_with_coord_start_impl(kind, rm_rules_on_disconnect, node_mode, start_coord).await
    }

    async fn init_with_coord_start_impl<F, Fut>(
        kind: ShipKind,
        rm_rules_on_disconnect: bool,
        node_mode: Qos,
        start_coord: F,
    ) -> anyhow::Result<Self>
    where
        F: FnOnce(Option<tokio::sync::mpsc::Sender<()>>) -> Fut,
        Fut: std::future::Future<Output = anyhow::Result<()>>,
    {
        let mut start_coord = Some(start_coord);

        // Create torpedo channel before potentially starting an embedded coordinator so that
        // the coordinator can signal this node to shut down via the torpedo mechanism.
        let (torpedo_tx, mut torpedo_rx) = tokio::sync::mpsc::channel::<()>(1);

        let client = Client::init(kind.clone(), rm_rules_on_disconnect, node_mode).await?;
        let client = Arc::new(tokio::sync::Mutex::new(client));

        info!("{:?} Registering for network...", &kind);

        let try_register = || async {
            timeout(Duration::from_millis(REGISTRATION_TIMEOUT_MS), async {
                client.lock().await.register().await
            })
            .await
        };

        let disconnect_rx = match try_register().await {
            Ok(Ok(handle)) => {
                info!("{:?} Registered.", &kind);
                handle
            }
            Ok(Err(e)) => return Err(e),
            Err(_elapsed) => {
                // No coordinator found — call the provided startup function and retry
                if let Some(start_coord) = start_coord.take() {
                    start_coord(Some(torpedo_tx)).await?;
                }
                // The startup callback does not return until a coordinator started by this
                // process has installed its join subscriber. If another process owns the
                // coordinator lock, retrying registration itself is the readiness wait.
                // A fixed sleep here only adds latency and cannot close any race.
                match try_register().await {
                    Ok(Ok(handle)) => {
                        info!("{:?} Registered.", &kind);
                        handle
                    }
                    Ok(Err(e)) => return Err(e),
                    Err(_elapsed) => {
                        return Err(anyhow::anyhow!(
                            "{:?} Registration timed out — no coordinator reachable",
                            &kind
                        ));
                    }
                }
            }
        };

        let disconnect = CancellationToken::new();
        let disconnect_cancel = disconnect.clone();
        tokio::spawn(async move {
            let _ = disconnect_rx.await;
            disconnect_cancel.cancel();
        });

        // Cancel disconnect when the embedded coordinator fires a torpedo (if one was started).
        let disconnect_torpedo = disconnect.clone();
        tokio::spawn(async move {
            if torpedo_rx.recv().await.is_some() {
                info!("Torpedo received — shutting down");
                disconnect_torpedo.cancel();
            }
        });

        let async_sends_in_flight = Arc::new(std::sync::Mutex::new(HashSet::new()));

        let route_cache = Arc::new(std::sync::RwLock::new(HashMap::<
            String,
            (crate::Action, bool),
        >::new()));
        let peer_monitor = Arc::new(std::sync::RwLock::new(HashMap::<
            String,
            tokio::task::AbortHandle,
        >::new()));

        let bypass_cache = matches!(kind, ShipKind::Rat(_));

        let ship = Self {
            client,
            runtime_handle: tokio::runtime::Handle::current(),
            // Initialize far enough in the past so the first heartbeat fires immediately
            last_send: Arc::new(tokio::sync::Mutex::new(
                Instant::now() - Duration::from_millis(REGISTRATION_TIMEOUT_MS),
            )),
            disconnect,
            async_sends_in_flight,
            route_cache,
            peer_monitor,
            bypass_cache,
        };

        // Background task: listen for RatAction packets pushed by the coordinator,
        // update route_cache, and reconcile per-peer monitor tasks.
        {
            let coord_receive_arc = {
                let c = ship.client.lock().await;
                Arc::clone(&c.coordinator_receive)
            };
            let coord_send_arc = {
                let c = ship.client.lock().await;
                Arc::clone(&c.coordinator_send)
            };
            let (session, domain_id) = {
                let c = ship.client.lock().await;
                (c.session(), c.domain_id())
            };

            let route_cache_bg = Arc::clone(&ship.route_cache);
            let peer_monitor_bg = Arc::clone(&ship.peer_monitor);
            let shutdown = ship.disconnect.clone();

            // subscribe() after registration guarantees the sender is set
            let mut rx = coord_receive_arc
                .read()
                .unwrap()
                .as_ref()
                .expect("coordinator_receive must be set after registration")
                .subscribe();

            // Per-variable peer sets: the required global peer set is their union.
            // This prevents a Sail response for one variable (e.g. /nothing_here)
            // from aborting monitors that are still needed by other variables.
            let mut per_var_peers: HashMap<String, HashSet<String>> = HashMap::new();

            tokio::spawn(async move {
                loop {
                    tokio::select! {
                        _ = shutdown.cancelled() => {
                            let mut monitors = peer_monitor_bg.write().unwrap();
                            for (_, handle) in monitors.drain() {
                                handle.abort();
                            }
                            return;
                        }
                        result = rx.recv() => {
                            match result {
                                Ok((packet, _)) => {
                                    match packet.data {
                                        PacketKind::RatAction {
                                            variable,
                                            action,
                                            lock_until_ack,
                                        } => {
                                            route_cache_bg.write().unwrap()
                                                .insert(variable.clone(), (action.clone(), lock_until_ack));

                                            // Update this variable's peer set and recompute the union.
                                            per_var_peers.insert(variable.clone(), extract_peers(&action));
                                            let required: HashSet<String> = per_var_peers
                                                .values()
                                                .flat_map(|s| s.iter().cloned())
                                                .collect();

                                            let current_peers: HashSet<String> = {
                                                peer_monitor_bg
                                                    .read()
                                                    .unwrap()
                                                    .keys()
                                                    .cloned()
                                                    .collect()
                                            };

                                            // Abort monitors for peers no longer needed by any variable
                                            {
                                                let to_remove: Vec<String> = current_peers
                                                    .iter()
                                                    .filter(|p| !required.contains(*p))
                                                    .cloned()
                                                    .collect();
                                                let mut monitors = peer_monitor_bg.write().unwrap();
                                                for peer in to_remove {
                                                    if let Some(handle) = monitors.remove(&peer) {
                                                        handle.abort();
                                                    }
                                                }
                                            }

                                            // Spawn monitors for newly required peers
                                            for peer in &required {
                                                if !current_peers.contains(peer) {
                                                    let coord_sender =
                                                        coord_send_arc.read().unwrap().clone();
                                                    if let Some(sender) = coord_sender {
                                                        let task = tokio::spawn(monitor_peer(
                                                            Arc::clone(&session),
                                                            domain_id,
                                                            peer.clone(),
                                                            sender,
                                                            shutdown.clone(),
                                                        ));
                                                        peer_monitor_bg
                                                            .write()
                                                            .unwrap()
                                                            .insert(peer.clone(), task.abort_handle());
                                                    }
                                                }
                                            }
                                        }
                                        PacketKind::Torpedo(dead_clients) => {
                                            info!(
                                                "Torpedo received from coordinator for {:?} — shutting down",
                                                dead_clients
                                            );
                                            shutdown.cancel();
                                        }
                                        _ => {}
                                    }
                                }
                                Err(tokio::sync::broadcast::error::RecvError::Lagged(_)) => {
                                    continue;
                                }
                                Err(_) => {
                                    // Channel closed — abort all peer monitors and exit
                                    let mut monitors = peer_monitor_bg.write().unwrap();
                                    for (_, handle) in monitors.drain() {
                                        handle.abort();
                                    }
                                    return;
                                }
                            }
                        }
                    }
                }
            });
        }

        Ok(ship)
    }
}

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

    fn peer(name: &str, node_mode: Qos) -> crate::NetworkShipAddress {
        crate::NetworkShipAddress {
            ip: [127, 0, 0, 1],
            port: 0,
            ship: 0,
            kind: crate::ShipKind::Rat(name.to_string()),
            node_mode,
        }
    }

    #[test]
    fn peer_monitors_exclude_best_effort_shoot_targets() {
        let action = crate::Action::Shoot {
            target: vec![
                peer("reliable################", Qos::Reliable),
                peer("scope################", Qos::BestEffort),
            ],
            id: 1,
        };

        assert_eq!(
            extract_peers(&action),
            HashSet::from(["reliable".to_string()])
        );
    }

    #[test]
    fn peer_monitors_exclude_best_effort_catch_sources() {
        let action = crate::Action::Catch {
            source: peer("scope", Qos::BestEffort),
            id: 1,
        };

        assert!(extract_peers(&action).is_empty());
    }

    /// A TryReliable peer is reliable on the wire but not fatal, so nothing
    /// may heartbeat-monitor it: a monitored peer that stops answering fires a
    /// Torpedo, which is exactly what this mode exists to avoid.
    #[test]
    fn peer_monitors_exclude_try_reliable_shoot_targets() {
        let action = crate::Action::Shoot {
            target: vec![
                peer("reliable################", Qos::Reliable),
                peer("viewer################", Qos::TryReliable),
            ],
            id: 1,
        };

        assert_eq!(
            extract_peers(&action),
            HashSet::from(["reliable".to_string()])
        );
    }

    #[test]
    fn peer_monitors_exclude_try_reliable_catch_sources() {
        let action = crate::Action::Catch {
            source: peer("viewer", Qos::TryReliable),
            id: 1,
        };

        assert!(extract_peers(&action).is_empty());
    }

    /// Shoot and Catch decide monitoring through the same predicate. They used
    /// to spell the question two opposite ways (`== Reliable` on one side,
    /// `== BestEffort` on the other), which agreed only while there were
    /// exactly two variants and silently disagreed the moment a third existed.
    #[test]
    fn shoot_and_catch_agree_on_which_modes_are_monitored() {
        for mode in [Qos::Reliable, Qos::TryReliable, Qos::BestEffort] {
            let shoot = crate::Action::Shoot {
                target: vec![peer("peer", mode)],
                id: 1,
            };
            let catch = crate::Action::Catch {
                source: peer("peer", mode),
                id: 1,
            };

            assert_eq!(
                extract_peers(&shoot).is_empty(),
                extract_peers(&catch).is_empty(),
                "Shoot and Catch disagree about monitoring {mode:?}"
            );
        }
    }

    #[test]
    fn async_send_guard_allows_only_one_message_per_target_and_variable() {
        let in_flight = Arc::new(std::sync::Mutex::new(HashSet::new()));
        let acquire = |ship: &str, var: &str| {
            AsyncSendGuard::try_acquire(Arc::clone(&in_flight), ship.to_string(), var.to_string())
        };

        let first = acquire("scope", "cloud").expect("first send should start");

        // Same target and same variable: still one at a time.
        assert!(acquire("scope", "cloud").is_none());
        // A different variable to the same target must not be starved by it.
        let delta = acquire("scope", "delta").expect("other variable should not contend");
        // A different target is independent as before.
        assert!(acquire("other", "cloud").is_some());

        drop(first);
        assert!(acquire("scope", "cloud").is_some());
        drop(delta);
    }

    #[test]
    fn captured_runtime_handle_spawns_from_plain_thread() {
        let runtime = tokio::runtime::Runtime::new().expect("runtime");
        let handle = runtime.handle().clone();
        let (tx, rx) = std::sync::mpsc::channel();

        std::thread::spawn(move || {
            handle.spawn(async move {
                tx.send(()).expect("test receiver should still exist");
            });
        })
        .join()
        .expect("plain worker thread should not panic");

        rx.recv_timeout(Duration::from_secs(1))
            .expect("task spawned through the captured runtime should run");
    }
}