netidx 0.31.9

Secure, fast, pub/sub messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
//! Subscribe to published values.
mod connection;
pub use crate::protocol::value::{FromValue, Typ, Value};
pub use crate::resolver_client::DesiredAuth;
use crate::{
    batch_channel::{self, BatchSender},
    config::Config,
    pack::{Pack, PackError},
    path::Path,
    protocol::{
        publisher::{From, Id, WriteId},
        resolver::{Publisher, PublisherId, Resolved, TargetAuth},
    },
    publisher::PublishFlags,
    resolver_client::ResolverRead,
    tls,
    utils::{BatchItem, Batched, ChanWrap},
};
use anyhow::{anyhow, Error, Result};
use bytes::{Buf, BufMut, Bytes};
use futures::{
    channel::{
        mpsc::{self, Sender, UnboundedReceiver, UnboundedSender},
        oneshot,
    },
    prelude::*,
    select_biased,
    stream::FuturesUnordered,
};
use fxhash::FxHashMap;
use if_addrs::{get_if_addrs, IfAddr, Interface as NetworkInterface};
use log::{info, trace, warn};
use netidx_netproto::resolver::{PublisherPriority, PublisherRef, UserInfo};
use parking_lot::Mutex;
use poolshark::global::{GPooled, Pool};
use rand::RngExt;
use smallvec::SmallVec;
use std::net::{Ipv4Addr, Ipv6Addr};
use std::sync::LazyLock;
use std::{
    cmp::{max, Eq, PartialEq},
    collections::{hash_map::Entry, HashMap, VecDeque},
    error, fmt,
    hash::Hash,
    iter, mem,
    net::SocketAddr,
    result,
    sync::{Arc, Weak},
    time::Duration,
};
use tokio::{
    task,
    time::{self, Instant},
};
use triomphe::Arc as TArc;

static BATCHES: LazyLock<Pool<Vec<(SubId, Event)>>> =
    LazyLock::new(|| Pool::new(64, 16384));
static DECODE_BATCHES: LazyLock<Pool<Vec<From>>> = LazyLock::new(|| Pool::new(64, 16384));

/// Subscription was denied due to insufficient permissions.
#[derive(Debug)]
pub struct PermissionDenied;

impl fmt::Display for PermissionDenied {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "permission denied")
    }
}

impl error::Error for PermissionDenied {}

/// The requested path does not exist.
#[derive(Debug)]
pub struct NoSuchValue;

impl fmt::Display for NoSuchValue {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "no such value")
    }
}

impl error::Error for NoSuchValue {}

atomic_id!(SubId);
atomic_id!(SubscriberId);
atomic_id!(ConId);

bitflags! {
    /// Flags controlling update delivery behavior.
    #[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
    pub struct UpdatesFlags: u32 {
        /// if set, then an immediate update will be sent consisting
        /// of the last value received from the publisher. If you
        /// reregister the same channel the last will be sent to that
        /// channel again, even though other events will not be sent
        /// twice. If you don't want this behavior you must also set
        /// NO_SPURIOUS.
        const BEGIN_WITH_LAST      = 0x01;

        /// If set then the subscriber will stop storing the last
        /// value. The `last` method will return whatever last was
        /// before this method was called, and the passed in channel
        /// will be the only way of getting data from the
        /// subscription. This improves performance at the expense of
        /// flexibility.
        const STOP_COLLECTING_LAST = 0x02;

        /// If BEGIN_WITH_LAST is set, and you reregister the same
        /// channel, do not send the last again to that
        /// channel.
        const NO_SPURIOUS          = 0x04;
    }
}

type Updates = GPooled<Vec<(SubId, Event)>>;
pub type UpdateChan = Sender<Updates>;
type WUpdateChan = ChanWrap<Updates>;
type Streams = SmallVec<[(UpdatesFlags, WUpdateChan); 1]>;

#[derive(Debug)]
struct SubscribeValRequest {
    path: Path,
    sub_id: SubId,
    timestamp: u64,
    permissions: u32,
    token: Bytes,
    resolver: SocketAddr,
    finished: oneshot::Sender<Result<Val>>,
    con: BatchSender<ToCon>,
    deadline: Option<Instant>,
    streams: Streams,
}

#[derive(Debug)]
enum ToCon {
    Subscribe(SubscribeValRequest),
    Unsubscribe(Id),
    Stream { id: Id, tx: WUpdateChan, flags: UpdatesFlags },
    Write(Id, Value, WriteId, Option<oneshot::Sender<Value>>),
    Flush(oneshot::Sender<()>),
}

/// A subscription event
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize, Deserialize)]
#[serde(tag = "type", content = "value")]
pub enum Event {
    /// The subscription has been unsubsubscribed
    Unsubscribed,
    /// The subscription's value has updated
    Update(Value),
}

impl Pack for Event {
    fn encoded_len(&self) -> usize {
        match self {
            Event::Unsubscribed => 1,
            Event::Update(v) => Pack::encoded_len(v),
        }
    }

    fn encode(&self, buf: &mut impl BufMut) -> result::Result<(), PackError> {
        match self {
            Event::Unsubscribed => Ok(buf.put_u8(0x40)),
            Event::Update(v) => Pack::encode(v, buf),
        }
    }

    fn decode(buf: &mut impl Buf) -> result::Result<Self, PackError> {
        if buf.chunk()[0] == 0x40 {
            buf.advance(1);
            Ok(Event::Unsubscribed)
        } else {
            Ok(Event::Update(Pack::decode(buf)?))
        }
    }
}

#[derive(Debug)]
struct ValInner {
    sub_id: SubId,
    id: Id,
    conid: ConId,
    connection: BatchSender<ToCon>,
    last: TArc<Mutex<Event>>,
}

impl Drop for ValInner {
    fn drop(&mut self) {
        self.connection.send(ToCon::Unsubscribe(self.id));
    }
}

#[derive(Debug, Clone)]
pub struct ValWeak(Weak<ValInner>);

impl ValWeak {
    pub fn upgrade(&self) -> Option<Val> {
        Weak::upgrade(&self.0).map(|r| Val(r))
    }
}

/// A non-durable subscription to a value.
///
/// If all user held references to `Val` are dropped then it will be unsubscribed.
#[derive(Debug, Clone)]
pub struct Val(Arc<ValInner>);

impl Val {
    pub fn downgrade(&self) -> ValWeak {
        ValWeak(Arc::downgrade(&self.0))
    }

    /// Get the last event value.
    pub fn last(&self) -> Event {
        self.0.last.lock().clone()
    }

    /// Register a channel to receive updates to this subscription.
    ///
    /// You may register multiple different channels to receive
    /// updates from a `Val`, and you may register one channel to
    /// receive updates from multiple `Val`s.
    ///
    /// If you register multiple channels pointing to the same
    /// receiver you will not get duplicate updates. However, if you
    /// register a duplicate channel and begin_with_last is true you
    /// will get an update with the current state, even though the
    /// channel registration will be ignored.
    pub fn updates(&self, flags: UpdatesFlags, tx: UpdateChan) {
        let m = ToCon::Stream { tx: ChanWrap(tx), id: self.0.id, flags };
        self.0.connection.send(m);
    }

    /// Write a value back to the publisher. This will start going out
    /// as soon as this method returns, and you can call `flush` on
    /// the subscriber to get pushback in case of a slow publisher.
    ///
    /// The publisher will receive multiple writes in the order you
    /// call `write`.
    ///
    /// The publisher will not reply to your write, except that it may
    /// update values you are subscribed to, or trigger some other
    /// observable action.
    pub fn write(&self, v: Value) {
        self.0.connection.send(ToCon::Write(self.0.id, v, WriteId::new(), None));
    }

    /// Write a value and wait for a reply from the publisher.
    ///
    /// This does the same thing as `write` except that it requires
    /// the publisher send a reply indicating the outcome of the
    /// request. The reply can be read from the returned oneshot
    /// channel.
    ///
    /// Note that compared to `write` this function has higher
    /// overhead, avoid it in situations where high message volumes
    /// are required.
    pub fn write_with_recipt(&self, v: Value) -> oneshot::Receiver<Value> {
        let (tx, rx) = oneshot::channel();
        self.0.connection.send(ToCon::Write(self.0.id, v, WriteId::new(), Some(tx)));
        rx
    }

    /// Get the unique id of this subscription.
    pub fn id(&self) -> SubId {
        self.0.sub_id
    }

    pub async fn flush(&self) -> Result<()> {
        let (tx, rx) = oneshot::channel();
        self.0.connection.send(ToCon::Flush(tx));
        rx.await.map_err(|_| anyhow!("subscription is dead"))
    }
}

#[derive(Debug)]
struct DvDead {
    queued_writes: Vec<(Value, Option<oneshot::Sender<Value>>)>,
    waiting: Vec<oneshot::Sender<()>>,
    tries: usize,
    next_try: Instant,
}

#[derive(Debug)]
enum DvState {
    Subscribed(Val),
    Dead(Box<DvDead>), // the box ensures that DvState is tag + 1 word
}

#[derive(Debug)]
struct DvalInner {
    sub_id: SubId,
    sub: DvState,
    streams: Streams,
}

#[derive(Debug, Clone)]
pub struct DvalWeak(Weak<Mutex<DvalInner>>);

impl DvalWeak {
    pub fn new() -> Self {
        DvalWeak(Weak::new())
    }

    pub fn upgrade(&self) -> Option<Dval> {
        Weak::upgrade(&self.0).map(|s| Dval(s))
    }
}

/// A durable value subscription with automatic reconnection.
///
/// `Dval` behaves just like `Val`, except that if it dies a task within subscriber will
/// attempt to resubscribe. The resubscription process goes through
/// the entire resolution and connection process again, so `Dval` is
/// robust to many failures. For example,
///
/// - multiple publishers are publishing on a path and one of them dies.
///   `Dval` will transparently move to another one.
///
/// - a publisher is restarted (possibly on a different
///   machine). `Dval` will wait using linear backoff for the publisher
///   to come back, and then it will resubscribe.
///
/// - The resolver server cluster is restarted. In this case existing
///   subscriptions won't die, but new ones will fail while the
///   cluster is down. However once it is back up, and the publishers
///   have republished all their data, which they will do
///   automatically, `Dval` will resubscribe to anything it couldn't
///   find while the resolver server cluster was down.
///
/// A `Dval` uses a bit more memory than a `Val` subscription, but
/// other than that the performance is the same. It is therefore
/// recommended that you use `Dval` as the default kind of value
/// subscription.
/// If `stop_collecting_last` is true then the subscriber will
/// stop storing the last value in addition to giving it to this
/// channel. The `last` method will return null from now on, and
/// the passed in channel will be the only way of getting data
/// from the subscription. This improves performance at the
/// expense of flexibility.

///
/// If all user held references to `Dval` are dropped it will be
/// unsubscribed.
#[derive(Debug, Clone)]
pub struct Dval(Arc<Mutex<DvalInner>>);

impl Dval {
    pub fn downgrade(&self) -> DvalWeak {
        DvalWeak(Arc::downgrade(&self.0))
    }

    /// Return the number of strong references to this dval
    pub fn strong_count(&self) -> usize {
        Arc::strong_count(&self.0)
    }

    /// Get the last value published by the publisher, or Unsubscribed
    /// if the subscription is currently dead.
    pub fn last(&self) -> Event {
        match &self.0.lock().sub {
            DvState::Dead(_) => Event::Unsubscribed,
            DvState::Subscribed(val) => val.last(),
        }
    }

    /// Register a channel to receive updates to this durable subscription.
    ///
    /// You may register multiple different channels to receive
    /// updates from a `Dval`, and you may register one channel to
    /// receive updates from multiple `Dval`s.
    pub fn updates(
        &self,
        flags: UpdatesFlags,
        tx: mpsc::Sender<GPooled<Vec<(SubId, Event)>>>,
    ) {
        let mut t = self.0.lock();
        let tx = ChanWrap(tx);
        if !t.streams.iter().any(|(_, s)| &tx == s) {
            t.streams.push((flags, tx.clone()));
        }
        if let DvState::Subscribed(ref sub) = t.sub {
            let m = ToCon::Stream { tx, id: sub.0.id, flags };
            sub.0.connection.send(m);
        }
    }

    /// Wait until the `Dval` is subscribed.
    ///
    /// This is not a guarantee that the `Dval` will stay subscribed for any
    /// length of time, just that at the moment this method returns
    /// the `Dval` is subscribed. If the `Dval` is subscribed when
    /// this method is called, it will return immediatly without
    /// allocating any resources.
    pub async fn wait_subscribed(&self) -> Result<()> {
        let (tx, rx) = oneshot::channel();
        match &mut self.0.lock().sub {
            DvState::Subscribed(_) => return Ok(()),
            DvState::Dead(d) => d.waiting.push(tx),
        }
        let _ = rx.await;
        Ok(())
    }

    /// Write a value back to the publisher.
    ///
    /// See `Val::write` for details. If we
    /// aren't currently subscribed the write will be queued and sent
    /// when we are. The return value will be `true` if the write was
    /// sent immediatly, and false if it was queued. It is still
    /// possible that a write will be dropped e.g. if the connection
    /// dies while we are writing it.
    pub fn write(&self, v: Value) -> bool {
        let mut t = self.0.lock();
        match &mut t.sub {
            DvState::Subscribed(val) => {
                val.write(v);
                true
            }
            DvState::Dead(dead) => {
                dead.queued_writes.push((v, None));
                false
            }
        }
    }

    /// Write a value and wait for a reply from the publisher.
    ///
    /// This does the same thing as `write` except that it requires
    /// the publisher send a reply indicating the outcome of the
    /// request. The reply can be read from the returned oneshot
    /// channel.
    ///
    /// Note that compared to `write` this function has higher
    /// overhead, avoid it in situations where high message volumes
    /// are required.
    ///
    /// If we are not currently subscribed then the write will be
    /// queued until we are. It is still possible that a write will be
    /// dropped e.g. if the connection dies while we are writing it.
    pub fn write_with_recipt(&self, v: Value) -> oneshot::Receiver<Value> {
        let (tx, rx) = oneshot::channel();
        let mut t = self.0.lock();
        match &mut t.sub {
            DvState::Subscribed(sub) => {
                sub.0.connection.send(ToCon::Write(
                    sub.0.id,
                    v,
                    WriteId::new(),
                    Some(tx),
                ));
            }
            DvState::Dead(dead) => {
                dead.queued_writes.push((v, Some(tx)));
            }
        }
        rx
    }

    /// Clear the write queue.
    pub fn clear_queued_writes(&self) {
        let mut t = self.0.lock();
        if let DvState::Dead(dead) = &mut t.sub {
            dead.queued_writes.clear();
        }
    }

    /// Return the number of queued writes.
    pub fn queued_writes(&self) -> usize {
        match &mut self.0.lock().sub {
            DvState::Subscribed(_) => 0,
            DvState::Dead(dead) => dead.queued_writes.len(),
        }
    }

    /// Return the unique id of this `Dval`.
    pub fn id(&self) -> SubId {
        self.0.lock().sub_id
    }
}

#[derive(Debug)]
enum SubStatus {
    Subscribed(ValWeak),
    Pending(Box<SmallVec<[oneshot::Sender<Result<Val>>; 1]>>), // the box ensures SubStatus is tag + 1 word
}

const REMEBER_FAILED: Duration = Duration::from_secs(60);

fn pick(n: usize) -> usize {
    let mut rng = rand::rng();
    rng.random_range(0..n)
}

#[derive(Debug)]
struct Connection {
    primary: Option<(ConId, BatchSender<ToCon>)>,
    isolated: FxHashMap<ConId, BatchSender<ToCon>>,
}

impl Connection {
    fn iter<'a>(&'a self) -> Box<dyn Iterator<Item = &'a BatchSender<ToCon>> + 'a> {
        match &self.primary {
            Some((_, c)) => Box::new(iter::once(c).chain(self.isolated.values())),
            None => Box::new(self.isolated.values()),
        }
    }

    fn remove(&mut self, id: ConId) {
        if let Some((other, _)) = &self.primary {
            if id == *other {
                self.primary = None;
            }
        }
        self.isolated.remove(&id);
    }

    fn is_empty(&self) -> bool {
        self.primary.is_none() && self.isolated.is_empty()
    }
}

#[derive(Debug)]
struct Chosen {
    addr: SocketAddr,
    target_auth: TargetAuth,
    token: Bytes,
    uifo: Option<UserInfo>,
    flags: PublishFlags,
}

#[derive(Debug)]
struct SubscriberInner {
    id: SubscriberId,
    resolver: ResolverRead,
    connections: FxHashMap<SocketAddr, Connection>,
    recently_failed: FxHashMap<SocketAddr, Instant>,
    subscribed: HashMap<Path, SubStatus>,
    durable_dead: HashMap<Path, DvalWeak>,
    durable_pending: HashMap<Path, DvalWeak>,
    durable_alive: HashMap<Path, DvalWeak>,
    trigger_resub: UnboundedSender<()>,
    desired_auth: DesiredAuth,
    tls_ctx: Option<tls::CachedConnector>,
    interfaces: Vec<NetworkInterface>,
}

impl SubscriberInner {
    fn durable_id(&self, path: &Path) -> Option<SubId> {
        self.durable_dead
            .get(path)
            .or_else(|| self.durable_pending.get(path))
            .or_else(|| self.durable_alive.get(path))
            .and_then(|w| w.upgrade())
            .map(|d| d.id())
    }

    fn choose_random_addr(
        &mut self,
        publishers: &GPooled<FxHashMap<PublisherId, Publisher>>,
        resolved: &Resolved,
        flags: PublishFlags,
    ) -> Option<Chosen> {
        use rand::seq::IteratorRandom;
        trace!("publishers {:?}", publishers);
        trace!("resolved {:?}", resolved);
        let mk = |(pref, pb): (&PublisherRef, &Publisher)| Chosen {
            addr: pb.addr,
            target_auth: pb.target_auth.clone(),
            token: pref.token.clone(),
            uifo: pb.user_info.clone(),
            flags,
        };
        macro_rules! with_pred {
            ($f:expr) => {
                resolved
                    .publishers
                    .iter()
                    .filter_map(|pref| {
                        publishers.get(&pref.id).filter($f).map(|pb| (pref, pb))
                    })
                    .choose(&mut rand::rng())
                    .map(mk)
            };
        }
        let high = with_pred!(|pb| {
            pb.priority == PublisherPriority::High
                && !self.recently_failed.contains_key(&pb.addr)
        });
        if let Some(chosen) = high {
            trace!("chosen {chosen:?}");
            return Some(chosen);
        }
        let normal = with_pred!(|pb| {
            (pb.priority == PublisherPriority::High
                || pb.priority == PublisherPriority::Normal)
                && !self.recently_failed.contains_key(&pb.addr)
        });
        if let Some(chosen) = normal {
            trace!("chosen {chosen:?}");
            return Some(chosen);
        }
        let low = with_pred!(|pb| !self.recently_failed.contains_key(&pb.addr));
        if let Some(chosen) = low {
            return Some(chosen);
        }
        let chosen = resolved
            .publishers
            .iter()
            .filter_map(|pref| publishers.get(&pref.id).map(|pb| (pref, pb)))
            .choose(&mut rand::rng())
            .map(mk);
        trace!("chosen {chosen:?}");
        chosen
    }

    fn choose_existing_addr(
        &mut self,
        publishers: &GPooled<FxHashMap<PublisherId, Publisher>>,
        resolved: &Resolved,
        mut flags: PublishFlags,
    ) -> Option<Chosen> {
        flags = flags & !PublishFlags::ISOLATED;
        for pref in &*resolved.publishers {
            if let Some(pb) = publishers.get(&pref.id) {
                if self.connections.contains_key(&pb.addr) {
                    return Some(Chosen {
                        addr: pb.addr,
                        target_auth: pb.target_auth.clone(),
                        token: pref.token.clone(),
                        uifo: pb.user_info.clone(),
                        flags,
                    });
                }
            }
        }
        if flags.contains(PublishFlags::PREFER_LOCAL) {
            self.choose_local_addr(true, publishers, resolved, flags)
        } else {
            self.choose_random_addr(publishers, resolved, flags)
        }
    }

    fn choose_local_addr(
        &mut self,
        tried_existing: bool,
        publishers: &GPooled<FxHashMap<PublisherId, Publisher>>,
        resolved: &Resolved,
        flags: PublishFlags,
    ) -> Option<Chosen> {
        use std::{cmp::min, net::IpAddr};
        fn mv4(ip: Ipv4Addr, mask: Ipv4Addr) -> Ipv4Addr {
            let mut masked = [0u8; 4];
            let ip = ip.octets();
            let mask = mask.octets();
            for i in 0..4 {
                masked[i] = ip[i] & mask[i];
            }
            masked.into()
        }
        fn mv6(ip: Ipv6Addr, mask: Ipv6Addr) -> Ipv6Addr {
            let mut masked = [0u8; 16];
            let ip = ip.octets();
            let mask = mask.octets();
            for i in 0..16 {
                masked[i] = ip[i] & mask[i];
            }
            masked.into()
        }
        let mut buf = SmallVec::<[(&PublisherRef, &Publisher); 16]>::new();
        buf.extend(
            resolved
                .publishers
                .iter()
                .filter_map(|r| publishers.get(&r.id).map(|pb| (r, pb)))
                .filter(|(_, p)| !self.recently_failed.contains_key(&p.addr)),
        );
        let mut all_far = true;
        buf.sort_by_key(|(_, pb): &(&PublisherRef, &Publisher)| {
            let ip = pb.addr.ip();
            let pri = self.interfaces.iter().fold(2, |cur, i| match &i.addr {
                IfAddr::V4(ifv4) => match ip {
                    IpAddr::V6(_) => cur,
                    IpAddr::V4(ipv4) => {
                        if ipv4 == ifv4.ip {
                            0
                        } else if mv4(ifv4.ip, ifv4.netmask) == mv4(ipv4, ifv4.netmask) {
                            min(cur, 1)
                        } else {
                            min(cur, 2)
                        }
                    }
                },
                IfAddr::V6(ifv6) => match ip {
                    IpAddr::V4(_) => cur,
                    IpAddr::V6(ipv6) => {
                        if ipv6 == ifv6.ip {
                            0
                        } else if mv6(ifv6.ip, ifv6.netmask) == mv6(ipv6, ifv6.netmask) {
                            min(cur, 1)
                        } else {
                            min(cur, 2)
                        }
                    }
                },
            });
            if pri < 2 {
                all_far = false;
            }
            pri
        });
        if all_far || buf.len() == 0 {
            if !tried_existing && flags.contains(PublishFlags::USE_EXISTING) {
                self.choose_existing_addr(publishers, resolved, flags)
            } else {
                self.choose_random_addr(publishers, resolved, flags)
            }
        } else {
            buf.first().map(|(pref, pb)| Chosen {
                addr: pb.addr,
                target_auth: pb.target_auth.clone(),
                token: pref.token.clone(),
                uifo: pb.user_info.clone(),
                flags,
            })
        }
    }

    fn choose_addr(
        &mut self,
        publishers: &GPooled<FxHashMap<PublisherId, Publisher>>,
        resolved: &Resolved,
    ) -> Option<Chosen> {
        let mut flags = PublishFlags::from_bits(resolved.flags)?;
        if flags.contains(PublishFlags::FORCE_LOCAL)
            && flags.contains(PublishFlags::PREFER_LOCAL)
        {
            flags &= !PublishFlags::PREFER_LOCAL;
        }
        if flags.contains(PublishFlags::FORCE_LOCAL) {
            self.choose_local_addr(false, publishers, resolved, flags)
        } else if flags.contains(PublishFlags::USE_EXISTING) {
            self.choose_existing_addr(publishers, resolved, flags)
        } else if flags.contains(PublishFlags::PREFER_LOCAL) {
            self.choose_local_addr(false, publishers, resolved, flags)
        } else {
            self.choose_random_addr(publishers, resolved, flags)
        }
    }

    fn gc_recently_failed(&mut self) {
        let now = Instant::now();
        self.recently_failed.retain(|_, v| (now - *v) < REMEBER_FAILED)
    }
}

#[derive(Debug, Clone)]
struct SubscriberWeak(Weak<Mutex<SubscriberInner>>);

impl SubscriberWeak {
    fn upgrade(&self) -> Option<Subscriber> {
        Weak::upgrade(&self.0).map(|s| Subscriber(s))
    }
}

/// Statistics about durable subscriptions.
#[derive(Debug, Clone, Copy)]
pub struct DurableStats {
    pub alive: usize,
    pub pending: usize,
    pub dead: usize,
}

/// Builder for configuring and creating a Subscriber.
pub struct SubscriberBuilder {
    cfg: Option<Config>,
    desired_auth: Option<DesiredAuth>,
}

impl SubscriberBuilder {
    pub fn new(cfg: Config) -> Self {
        Self { cfg: Some(cfg), desired_auth: None }
    }

    pub fn build(&mut self) -> Result<Subscriber> {
        let cfg = self
            .cfg
            .take()
            .ok_or_else(|| anyhow!("config is required, did you reuse the builder?"))?;
        let desired_auth = self.desired_auth.take().unwrap_or_else(|| cfg.default_auth());
        Subscriber::new(cfg, desired_auth)
    }

    pub fn desired_auth(&mut self, auth: DesiredAuth) -> &mut Self {
        self.desired_auth = Some(auth);
        self
    }
}

/// Subscribe to published values.
#[derive(Clone, Debug)]
pub struct Subscriber(Arc<Mutex<SubscriberInner>>);

impl Subscriber {
    /// Create a new subscriber with the specified config and desired auth.
    pub fn new(resolver: Config, desired_auth: DesiredAuth) -> Result<Subscriber> {
        let (tx, rx) = mpsc::unbounded();
        let tls_ctx = resolver.tls.clone().map(tls::CachedConnector::new);
        let resolver = ResolverRead::new(resolver, desired_auth.clone());
        let t = Subscriber(Arc::new(Mutex::new(SubscriberInner {
            id: SubscriberId::new(),
            resolver,
            desired_auth,
            connections: HashMap::default(),
            recently_failed: HashMap::default(),
            subscribed: HashMap::default(),
            durable_dead: HashMap::default(),
            durable_pending: HashMap::default(),
            durable_alive: HashMap::default(),
            trigger_resub: tx,
            tls_ctx,
            interfaces: get_if_addrs()?,
        })));
        t.start_resub_task(rx);
        Ok(t)
    }

    /// Return a unique identifier for this subscriber instance.
    ///
    /// The identifier will be unique across all subscribers created in
    /// this process, but not across processes or machines.
    pub fn id(&self) -> SubscriberId {
        self.0.lock().id
    }

    /// Return stats about durable subscriptions.
    pub fn durable_stats(&self) -> DurableStats {
        let t = self.0.lock();
        DurableStats {
            alive: t.durable_alive.len(),
            pending: t.durable_pending.len(),
            dead: t.durable_dead.len(),
        }
    }

    pub fn is_subscribed_or_pending(&self, path: &Path) -> bool {
        let t = self.0.lock();
        t.subscribed.contains_key(path)
            || t.durable_dead.contains_key(path)
            || t.durable_pending.contains_key(path)
            || t.durable_alive.contains_key(path)
    }

    pub fn resolver(&self) -> ResolverRead {
        self.0.lock().resolver.clone()
    }

    fn downgrade(&self) -> SubscriberWeak {
        SubscriberWeak(Arc::downgrade(&self.0))
    }

    fn start_resub_task(&self, incoming: UnboundedReceiver<()>) {
        async fn wait_retry(retry: Option<Instant>) {
            match retry {
                None => future::pending().await,
                Some(d) => time::sleep_until(d).await,
            }
        }
        fn update_retry(subscriber: &mut SubscriberInner, retry: &mut Option<Instant>) {
            let now = Instant::now();
            *retry = None;
            for w in subscriber.durable_dead.values() {
                if let Some(dv) = w.upgrade() {
                    let next_try = match &dv.0.lock().sub {
                        DvState::Dead(dead) => dead.next_try,
                        DvState::Subscribed(_) => unreachable!(),
                    };
                    match retry {
                        None => {
                            *retry = Some(next_try);
                        }
                        Some(retry) => {
                            if next_try < *retry {
                                *retry = next_try;
                            }
                        }
                    }
                    if next_try <= now {
                        break;
                    }
                }
            }
        }
        async fn do_resub(
            subscriber: &SubscriberWeak,
            retry: &mut Option<Instant>,
        ) -> Option<FuturesUnordered<impl Future<Output = (Path, Result<Val>)> + use<>>>
        {
            let subscriber = subscriber.upgrade()?;
            info!("doing resubscriptions");
            let now = Instant::now();
            let (batch, timeout) = {
                let mut dead = Vec::new();
                let mut batch: Vec<(Path, Streams)> = Vec::new();
                let mut subscriber = subscriber.0.lock();
                let subscriber = &mut *subscriber;
                let durable_dead = &mut subscriber.durable_dead;
                let durable_pending = &mut subscriber.durable_pending;
                let mut max_tries = 1;
                let mut total_retries = 0;
                for (p, w) in durable_dead.iter() {
                    match w.upgrade() {
                        None => {
                            dead.push(p.clone());
                        }
                        Some(s) => {
                            let mut dv = s.0.lock();
                            let (next_try, tries) = {
                                match &mut dv.sub {
                                    DvState::Dead(d) => (d.next_try, d.tries),
                                    DvState::Subscribed(_) => unreachable!(),
                                }
                            };
                            if next_try <= now {
                                let streams = dv.streams.clone();
                                drop(dv);
                                batch.push((p.clone(), streams));
                                durable_pending.insert(p.clone(), w.clone());
                                max_tries = max(max_tries, tries);
                                total_retries += 1;
                                if total_retries >= 100_000 {
                                    break;
                                }
                            }
                        }
                    }
                }
                for p in dead.iter().chain(batch.iter().map(|(p, _)| p)) {
                    durable_dead.remove(p);
                }
                let timeout = 30 + max(10, batch.len() / 10000) * max_tries;
                (batch, Duration::from_secs(timeout as u64))
            };
            if batch.len() == 0 {
                let mut subscriber = subscriber.0.lock();
                update_retry(&mut *subscriber, retry);
                None
            } else {
                update_retry(&mut *subscriber.0.lock(), retry);
                Some(subscriber.subscribe_nondurable_internal(batch, Some(timeout)).await)
            }
        }
        fn finish_resubscription_batch(
            subscriber: &SubscriberWeak,
            batch: &mut Vec<(Path, Result<Val>)>,
            retry: &mut Option<Instant>,
        ) {
            if let Some(subscriber) = subscriber.upgrade() {
                let mut subscriber = subscriber.0.lock();
                let now = Instant::now();
                for (p, r) in batch.drain(..) {
                    if let Some(ds) =
                        subscriber.durable_pending.remove(&p).and_then(|ds| ds.upgrade())
                    {
                        trace!("processing pending subscrition to {p}");
                        let dsw = ds.downgrade();
                        let mut dv = ds.0.lock();
                        macro_rules! failed {
                            ($e:expr) => {
                                match &mut dv.sub {
                                    DvState::Subscribed(_) => unreachable!(),
                                    DvState::Dead(d) => {
                                        d.tries += 1;
                                        let wait = Duration::from_millis(
                                            pick(d.tries) as u64 * 50,
                                        );
                                        d.next_try = now + wait;
                                        let s = wait.as_secs_f32();
                                        warn!(
                                            "resubscription error {}: {}, next try: {}s",
                                            p, $e, s
                                        );
                                        subscriber.durable_dead.insert(p.clone(), dsw);
                                    }
                                }
                            };
                        }
                        match r {
                            Err(e) => failed!(e),
                            Ok(sub) if *sub.0.last.lock() == Event::Unsubscribed => {
                                failed!(anyhow!("unsubscribed"))
                            }
                            Ok(sub) => {
                                info!("resubscription success {}", p);
                                for (f, tx) in &dv.streams {
                                    sub.0.connection.send(ToCon::Stream {
                                        tx: tx.clone(),
                                        id: sub.0.id,
                                        flags: *f
                                            | UpdatesFlags::BEGIN_WITH_LAST
                                            | UpdatesFlags::NO_SPURIOUS,
                                    });
                                }
                                if let DvState::Dead(d) = &mut dv.sub {
                                    for (v, resp) in d.queued_writes.drain(..) {
                                        sub.0.connection.send(ToCon::Write(
                                            sub.0.id,
                                            v,
                                            WriteId::new(),
                                            resp,
                                        ));
                                    }
                                }
                                dv.sub = DvState::Subscribed(sub);
                                subscriber.durable_alive.insert(p.clone(), dsw);
                            }
                        }
                    }
                }
                update_retry(&mut *subscriber, retry);
            }
        }
        async fn next_subscription_result(
            subscriptions: &mut VecDeque<
                Batched<FuturesUnordered<impl Future<Output = (Path, Result<Val>)>>>,
            >,
        ) -> BatchItem<(Path, Result<Val>)> {
            loop {
                if subscriptions.is_empty() {
                    return future::pending().await;
                } else if subscriptions.len() == 1 {
                    match subscriptions[0].next().await {
                        Some(v) => return v,
                        None => {
                            subscriptions.pop_front();
                        }
                    }
                } else {
                    let i = subscriptions
                        .iter_mut()
                        .enumerate()
                        .map(|(i, f)| f.next().map(move |r| (r, i)));
                    let ((r, i), _, _) = future::select_all(i).await;
                    match r {
                        Some(v) => return v,
                        None => {
                            subscriptions.remove(i);
                        }
                    }
                }
            }
        }
        let subscriber = self.downgrade();
        task::spawn(async move {
            let mut incoming = Batched::new(incoming.fuse(), 1_000_000_000);
            let mut subscriptions = VecDeque::new();
            let mut subscription_batch = Vec::new();
            let mut retry: Option<Instant> = None;
            loop {
                select_biased! {
                    m = incoming.next() => match m {
                        None => break,
                        Some(BatchItem::InBatch(())) => {
                            trace!("incoming");
                            ()
                        },
                        Some(BatchItem::EndBatch) => {
                            trace!("incoming end batch");
                            if let Some(set) = do_resub(&subscriber, &mut retry).await {
                                subscriptions.push_back(Batched::new(set, 100_000));
                            }
                        }
                    },
                    m = next_subscription_result(&mut subscriptions).fuse() => match m {
                        BatchItem::InBatch((p, r)) => {
                            trace!("subscription result for {p} {r:?}");
                            subscription_batch.push((p, r))
                        },
                        BatchItem::EndBatch => {
                            trace!("end subscription batch {}", subscription_batch.len());
                            finish_resubscription_batch(
                                &subscriber,
                                &mut subscription_batch,
                                &mut retry
                            );
                            if let Some(t) = retry {
                                if Instant::now() >= t {
                                    if let Some(set) = do_resub(&subscriber, &mut retry).await {
                                        subscriptions.push_back(Batched::new(set, 100_000));
                                    }
                                }
                            }
                        }
                    },
                    _ = wait_retry(retry).fuse() => {
                        trace!("time to retry");
                        if let Some(set) = do_resub(&subscriber, &mut retry).await {
                            subscriptions.push_back(Batched::new(set, 100_000));
                        }
                    },
                }
            }
            trace!("resub loop ended");
        });
    }

    fn start_connection(
        &self,
        tls_ctx: Option<tls::CachedConnector>,
        uifo: Option<UserInfo>,
        addr: SocketAddr,
        target_auth: &TargetAuth,
        desired_auth: &DesiredAuth,
    ) -> (ConId, BatchSender<ToCon>) {
        let (tx, rx) = batch_channel::channel();
        let subscriber = self.downgrade();
        let desired_auth = desired_auth.clone();
        let conid = ConId::new();
        let target_auth = target_auth.clone();
        task::spawn(async move {
            let res = connection::ConnectionCtx::new(
                addr,
                subscriber.clone(),
                conid,
                tls_ctx,
                uifo,
                target_auth,
                desired_auth,
                rx,
            )
            .start()
            .await;
            if let Some(subscriber) = subscriber.upgrade() {
                if let Entry::Occupied(mut e) =
                    subscriber.0.lock().connections.entry(addr)
                {
                    let c = e.get_mut();
                    c.remove(conid);
                    if c.is_empty() {
                        e.remove();
                    }
                }
                match res {
                    Ok(()) => {
                        info!("connection to {} closed", addr)
                    }
                    Err(e) => {
                        subscriber.0.lock().recently_failed.insert(addr, Instant::now());
                        warn!("connection to {} failed {}", addr, e)
                    }
                }
            }
        });
        (conid, tx)
    }

    /// Subscribe to a batch of values.
    ///
    /// To minimize round trips and amortize locking path resolution
    /// and subscription are done in batches. Best performance will be
    /// achieved with larger batches.
    ///
    /// In case you are already subscribed to one or more of the paths
    /// or aliases of the paths in the batch, you will receive a
    /// reference to the existing subscription. However subscriber
    /// does not retain strong references to subscribed values, so if
    /// you drop all of them it will be unsubscribed.
    ///
    /// It is safe to call this function concurrently with the same or
    /// overlapping sets of paths in the batch, only one subscription
    /// attempt will be made, and the result of that one attempt will
    /// be given to each concurrent caller upon success or failure.
    ///
    /// The timeout, if specified, will apply to each subscription
    /// individually. Any subscription that does not complete
    /// successfully before the specified timeout will result in an
    /// error, but that error will not effect other subscriptions in
    /// the batch, which may complete successfully. If you need all or
    /// nothing behavior, specify None for timeout and wrap the
    /// `subscribe` future in a `tokio::time::timeout`.
    pub async fn subscribe_nondurable(
        &self,
        batch: impl Iterator<Item = Path>,
        timeout: Option<Duration>,
    ) -> FuturesUnordered<impl Future<Output = (Path, Result<Val>)>> {
        self.subscribe_nondurable_internal(batch.map(|p| (p, [])), timeout).await
    }

    /// Subscribe to a batch of values with updates channels.
    ///
    /// This is the same as subscribe_nondurable except that updates
    /// channels may be registered for each path from the very
    /// beginning of the subscription. This ensures that every update
    /// from the beginning of the subscription will appear in the
    /// specified update channels.
    pub async fn subscribe_nondurable_updates<I, CI>(
        &self,
        batch: I,
        timeout: Option<Duration>,
    ) -> FuturesUnordered<impl Future<Output = (Path, Result<Val>)>>
    where
        I: IntoIterator<Item = (Path, CI)>,
        CI: IntoIterator<Item = (UpdatesFlags, UpdateChan)>,
    {
        let batch = batch
            .into_iter()
            .map(|(p, i)| (p, i.into_iter().map(|(f, c)| (f, ChanWrap(c)))));
        self.subscribe_nondurable_internal(batch, timeout).await
    }

    async fn subscribe_nondurable_internal<I, CI>(
        &self,
        batch: I,
        timeout: Option<Duration>,
    ) -> FuturesUnordered<impl Future<Output = (Path, Result<Val>)> + use<I, CI>>
    where
        I: IntoIterator<Item = (Path, CI)>,
        CI: IntoIterator<Item = (UpdatesFlags, WUpdateChan)>,
    {
        #[derive(Debug)]
        enum St {
            Resolve(Streams),
            Subscribing(oneshot::Receiver<Result<Val>>),
            WaitingOther(oneshot::Receiver<Result<Val>>, Streams),
            Subscribed(Val, Streams),
            Error(Error),
        }
        let now = Instant::now();
        let mut pending: HashMap<Path, St> = HashMap::new();
        // Init
        let r = {
            let mut t = self.0.lock();
            t.gc_recently_failed();
            for (p, chans) in batch {
                let streams: Streams = chans.into_iter().collect();
                trace!("subscribing to {} streams {}", p, streams.len());
                match t.subscribed.entry(p.clone()) {
                    Entry::Vacant(e) => {
                        e.insert(SubStatus::Pending(Box::new(SmallVec::new())));
                        pending.insert(p, St::Resolve(streams));
                    }
                    Entry::Occupied(mut e) => match e.get_mut() {
                        SubStatus::Pending(v) => {
                            let (tx, rx) = oneshot::channel();
                            v.push(tx);
                            pending.insert(p, St::WaitingOther(rx, streams));
                        }
                        SubStatus::Subscribed(r) => match r.upgrade() {
                            Some(r) => {
                                trace!("already subscribed to {}", p);
                                pending.insert(p, St::Subscribed(r, streams));
                            }
                            None => {
                                e.insert(SubStatus::Pending(Box::new(SmallVec::new())));
                                pending.insert(p, St::Resolve(streams));
                            }
                        },
                    },
                }
            }
            t.resolver.clone()
        };
        // Resolve, Connect, Subscribe
        {
            let to_resolve = pending
                .iter()
                .filter(|(_, s)| match s {
                    St::Resolve(_) => true,
                    _ => false,
                })
                .map(|(p, _)| p.clone())
                .collect::<SmallVec<[_; 100]>>();
            let r = match timeout {
                None => Ok(r.resolve(to_resolve.iter().cloned()).await),
                Some(d) => time::timeout(d, r.resolve(to_resolve.iter().cloned())).await,
            };
            match r {
                Err(_) => {
                    for p in to_resolve {
                        let e = anyhow!("resolving {} timed out", p);
                        pending.insert(p, St::Error(e));
                    }
                }
                Ok(Err(e)) => {
                    for p in to_resolve {
                        let s = St::Error(anyhow!("resolving {} failed {}", p, e));
                        pending.insert(p, s);
                    }
                }
                Ok(Ok((publishers, mut res))) => {
                    let mut t = self.0.lock();
                    let deadline = timeout.map(|t| now + t);
                    let desired_auth = t.desired_auth.clone();
                    for (p, resolved) in to_resolve.into_iter().zip(res.drain(..)) {
                        if resolved.publishers.len() == 0 {
                            pending.insert(p, St::Error(anyhow!("path not found")));
                        } else if let Some(ch) = t.choose_addr(&publishers, &resolved) {
                            let tls_ctx = t.tls_ctx.clone();
                            let sub_id = t.durable_id(&p).unwrap_or_else(SubId::new);
                            let con = t.connections.entry(ch.addr).or_insert_with(|| {
                                Connection { primary: None, isolated: HashMap::default() }
                            });
                            let con = if ch.flags.contains(PublishFlags::ISOLATED) {
                                let (id, c) = self.start_connection(
                                    tls_ctx,
                                    ch.uifo,
                                    ch.addr,
                                    &ch.target_auth,
                                    &desired_auth,
                                );
                                con.isolated.insert(id, c.clone());
                                c
                            } else {
                                match &con.primary {
                                    Some((_, c)) => c.clone(),
                                    None => {
                                        let (id, c) = self.start_connection(
                                            tls_ctx,
                                            ch.uifo,
                                            ch.addr,
                                            &ch.target_auth,
                                            &desired_auth,
                                        );
                                        con.primary = Some((id, c.clone()));
                                        c
                                    }
                                }
                            };
                            let (tx, rx) = oneshot::channel();
                            let con_ = con.clone();
                            let streams = match pending.remove(&p) {
                                Some(St::Resolve(streams)) => streams,
                                _ => unreachable!(),
                            };
                            let r = con.send(ToCon::Subscribe(SubscribeValRequest {
                                path: p.clone(),
                                sub_id,
                                timestamp: resolved.timestamp,
                                permissions: resolved.permissions as u32,
                                token: ch.token,
                                resolver: resolved.resolver,
                                finished: tx,
                                con: con_,
                                deadline,
                                streams,
                            }));
                            if r {
                                pending.insert(p, St::Subscribing(rx));
                            } else {
                                pending.insert(
                                    p,
                                    St::Error(Error::from(anyhow!("connection closed"))),
                                );
                            }
                        } else {
                            let e = anyhow!("missing publisher record");
                            pending.insert(p, St::Error(e));
                        }
                    }
                }
            }
        }
        // Wait
        async fn wait_result(sub: Subscriber, path: Path, st: St) -> (Path, Result<Val>) {
            match st {
                St::Resolve(_) => unreachable!(),
                St::Subscribed(raw, streams) => {
                    for (f, tx) in streams {
                        let m = ToCon::Stream {
                            tx,
                            flags: f | UpdatesFlags::BEGIN_WITH_LAST,
                            id: raw.0.id,
                        };
                        raw.0.connection.send(m);
                    }
                    (path, Ok(raw))
                }
                St::Error(e) => {
                    let mut t = sub.0.lock();
                    if let Some(sub) = t.subscribed.remove(path.as_ref()) {
                        match sub {
                            SubStatus::Subscribed(_) => unreachable!(),
                            SubStatus::Pending(waiters) => {
                                for w in waiters.into_iter() {
                                    let err = Err(anyhow!("{}", e));
                                    let _ = w.send(err);
                                }
                            }
                        }
                    }
                    (path, Err(e))
                }
                St::WaitingOther(w, streams) => match w.await {
                    Err(e) => (path, Err(anyhow!("other side died {}", e))),
                    Ok(Err(e)) => (path, Err(e)),
                    Ok(Ok(raw)) => {
                        for (f, tx) in streams {
                            let m = ToCon::Stream { tx, flags: f, id: raw.0.id };
                            raw.0.connection.send(m);
                        }
                        (path, Ok(raw))
                    }
                },
                St::Subscribing(w) => {
                    let res = match w.await {
                        Err(e) => Err(anyhow!("connection died {}", e)),
                        Ok(Err(e)) => Err(e),
                        Ok(Ok(raw)) => Ok(raw),
                    };
                    let mut t = sub.0.lock();
                    match t.subscribed.entry(path.clone()) {
                        Entry::Vacant(_) => unreachable!(),
                        Entry::Occupied(mut e) => match res {
                            Err(err) => match e.remove() {
                                SubStatus::Subscribed(_) => unreachable!(),
                                SubStatus::Pending(waiters) => {
                                    for w in waiters.into_iter() {
                                        let err = Err(anyhow!("{}", err));
                                        let _ = w.send(err);
                                    }
                                    (path, Err(err))
                                }
                            },
                            Ok(raw) => {
                                let s = mem::replace(
                                    e.get_mut(),
                                    SubStatus::Subscribed(raw.downgrade()),
                                );
                                match s {
                                    SubStatus::Subscribed(_) => unreachable!(),
                                    SubStatus::Pending(waiters) => {
                                        for w in waiters.into_iter() {
                                            let _ = w.send(Ok(raw.clone()));
                                        }
                                        (path, Ok(raw))
                                    }
                                }
                            }
                        },
                    }
                }
            }
        }
        pending.drain().map(|(path, st)| wait_result(self.clone(), path, st)).collect()
    }

    /// Subscribe to a single value.
    ///
    /// This is sufficient for a small number of paths, but if you
    /// need to subscribe to a lot of values it is more efficent to
    /// use `subscribe`. The semantics of this method are the same as
    /// `subscribe` called with 1 path.
    pub async fn subscribe_nondurable_one(
        &self,
        path: Path,
        timeout: Option<Duration>,
    ) -> Result<Val> {
        self.subscribe_nondurable(iter::once(path), timeout).await.next().await.unwrap().1
    }

    /// Subscribe to a single value with updates channels.
    ///
    /// This is sufficient for a small number of paths, but if you
    /// need to subscribe to a lot of values it is more efficent to
    /// use `subscribe`. The semantics of this method are the same as
    /// `subscribe` called with 1 path.
    pub async fn subscribe_nondurable_one_updates(
        &self,
        path: Path,
        updates: impl IntoIterator<Item = (UpdatesFlags, UpdateChan)>,
        timeout: Option<Duration>,
    ) -> Result<Val> {
        let updates = updates.into_iter().map(|(f, c)| (f, ChanWrap(c)));
        self.subscribe_nondurable_internal(iter::once((path, updates)), timeout)
            .await
            .next()
            .await
            .unwrap()
            .1
    }

    fn subscribe_internal<I>(&self, path: Path, updates: I) -> Dval
    where
        I: IntoIterator<Item = (UpdatesFlags, Sender<GPooled<Vec<(SubId, Event)>>>)>,
    {
        let mut t = self.0.lock();
        if let Some(s) = t
            .durable_dead
            .get(&path)
            .or_else(|| t.durable_pending.get(&path))
            .or_else(|| t.durable_alive.get(&path))
        {
            if let Some(s) = s.upgrade() {
                for (f, c) in updates {
                    s.updates(f, c)
                }
                return s;
            }
        }
        let s = Dval(Arc::new(Mutex::new(DvalInner {
            sub_id: SubId::new(),
            sub: DvState::Dead(Box::new(DvDead {
                queued_writes: Vec::new(),
                waiting: Vec::new(),
                tries: 0,
                next_try: Instant::now(),
            })),
            streams: SmallVec::from_iter(
                updates.into_iter().map(|(f, c)| (f, ChanWrap(c))),
            ),
        })));
        t.durable_dead.insert(path, s.downgrade());
        let _ = t.trigger_resub.unbounded_send(());
        s
    }

    /// Create a durable subscription with updates channels.
    ///
    /// Batching of durable subscriptions is automatic, if you create
    /// a lot of durable subscriptions all at once they will batch.
    ///
    /// The semantics of `durable_subscribe` are the same as
    /// subscribe_nondurable, except that certain errors are caught,
    /// and resubscriptions are attempted. see `Dval`.
    ///
    /// If the specified path is already subscribed then the specified
    /// updates channels will be registered with the dval as if
    /// dval.updates has been called.
    pub fn subscribe_updates<I>(&self, path: Path, updates: I) -> Dval
    where
        I: IntoIterator<Item = (UpdatesFlags, Sender<GPooled<Vec<(SubId, Event)>>>)>,
    {
        self.subscribe_internal(path, updates)
    }

    /// Create a durable subscription.
    ///
    /// Batching of durable subscriptions is automatic, if you create
    /// a lot of durable subscriptions all at once they will batch.
    ///
    /// The semantics of `durable_subscribe` are the same as
    /// subscribe_nondurable, except that certain errors are caught,
    /// and resubscriptions are attempted. see `Dval`.
    pub fn subscribe(&self, path: Path) -> Dval {
        self.subscribe_internal(path, [])
    }

    /// Wait for all pending operations to flush to publishers.
    ///
    /// This is primarially used to provide
    /// pushback in the case you want to do a lot of writes, and you
    /// need pushback in case a publisher is slow to process them,
    /// however it applies to durable_subscribe and unsubscribe as well.
    pub async fn flush(&self) {
        let flushes = {
            let t = self.0.lock();
            t.connections
                .values()
                .flat_map(|c| {
                    c.iter().map(|c| {
                        let (tx, rx) = oneshot::channel();
                        c.send(ToCon::Flush(tx));
                        rx
                    })
                })
                .collect::<Vec<_>>()
        };
        for flush in flushes {
            let _ = flush.await;
        }
    }
}