libzmq 0.2.5

A strict subset of ØMQ with a high level API.
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
use crate::prelude::TryFrom;
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
use thiserror::Error;
use uuid::Uuid;

use std::{
    fmt,
    net::{self, IpAddr, Ipv4Addr, Ipv6Addr},
    option,
    str::{self, FromStr},
    vec,
};

/// The maximum number of characters in a `inproc` address.
pub const INPROC_MAX_SIZE: usize = 256;

/// A trait equivalent to `IntoIter<Item=Into<IpAddr>>` for `std::net::*` types.
pub trait IntoIpAddrs {
    /// Returned iterator over ip addresses which this type may correspond
    /// to.
    type IntoIter: Iterator<Item = IpAddr>;

    /// Converts this object to an iterator of resolved `IpAddr`s.
    fn into_ip_addrs(self) -> Self::IntoIter;
}

impl IntoIpAddrs for IpAddr {
    type IntoIter = option::IntoIter<Self>;
    fn into_ip_addrs(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl IntoIpAddrs for Ipv4Addr {
    type IntoIter = option::IntoIter<IpAddr>;
    fn into_ip_addrs(self) -> Self::IntoIter {
        IpAddr::V4(self.to_owned()).into_ip_addrs()
    }
}

impl IntoIpAddrs for Ipv6Addr {
    type IntoIter = option::IntoIter<IpAddr>;
    fn into_ip_addrs(self) -> Self::IntoIter {
        IpAddr::V6(self.to_owned()).into_ip_addrs()
    }
}

impl<'a> IntoIpAddrs for &'a [IpAddr] {
    type IntoIter = vec::IntoIter<IpAddr>;

    fn into_ip_addrs(self) -> Self::IntoIter {
        let ips: Vec<IpAddr> = self.iter().map(ToOwned::to_owned).collect();
        ips.into_ip_addrs()
    }
}

impl<T> IntoIpAddrs for &T
where
    T: IntoIpAddrs + ?Sized + Clone,
{
    type IntoIter = T::IntoIter;
    fn into_ip_addrs(self) -> Self::IntoIter {
        (*self).clone().into_ip_addrs()
    }
}

impl<E> IntoIpAddrs for Vec<E>
where
    E: Into<IpAddr>,
{
    type IntoIter = vec::IntoIter<IpAddr>;
    fn into_ip_addrs(self) -> Self::IntoIter {
        let ips: Vec<IpAddr> = self.into_iter().map(E::into).collect();
        ips.into_iter()
    }
}

/// An error that occurs when an address cannot be parsed.
///
/// The error contains a message detailling the source of the error.
#[derive(Debug, Error)]
#[error("cannot parse address : {}", msg)]
pub struct AddrParseError {
    msg: &'static str,
}

impl AddrParseError {
    fn new(msg: &'static str) -> Self {
        Self { msg }
    }

    pub fn msg(&self) -> &'static str {
        self.msg
    }
}

macro_rules! serde_display_tryfrom {
    ($name:ident) => {
        impl Serialize for $name {
            fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
            where
                S: Serializer,
            {
                serializer.collect_str(self)
            }
        }

        impl<'de> Deserialize<'de> for $name {
            fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
            where
                D: Deserializer<'de>,
            {
                let s = String::deserialize(deserializer)?;
                TryFrom::try_from(s).map_err(de::Error::custom)
            }
        }
    };
}

macro_rules! tryfrom_fromstr {
    ($name:ident) => {
        impl TryFrom<String> for $name {
            type Error = AddrParseError;
            fn try_from(s: String) -> Result<Self, AddrParseError> {
                Self::from_str(s.as_str())
            }
        }

        impl<'a> TryFrom<&'a String> for $name {
            type Error = AddrParseError;
            fn try_from(s: &'a String) -> Result<Self, AddrParseError> {
                Self::from_str(s.as_str())
            }
        }

        impl<'a> TryFrom<&'a str> for $name {
            type Error = AddrParseError;
            fn try_from(s: &'a str) -> Result<Self, AddrParseError> {
                Self::from_str(s)
            }
        }
    };
}

/// An named interface.
///
/// It can represente a network interface, a DNS address or
/// a IP hostname depending on the context.
///
/// The hostname must be strictly alpha-numeric except for the `-` character
/// that is allowed.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, addr::Hostname};
///
/// // This is a network interface.
/// let net: Hostname = "eth0".try_into()?;
/// // This is a DNS address.
/// let dns: Hostname = "server-name".try_into()?;
/// // This is a IPv4 hostname
/// let localhost: Hostname = "localhost".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct Hostname {
    name: String,
}

impl Hostname {
    pub fn new<S>(name: S) -> Result<Self, AddrParseError>
    where
        S: Into<String>,
    {
        let name = name.into();

        if !name.is_empty() {
            for c in name.as_str().chars() {
                if !c.is_ascii_alphanumeric() && c != '-' {
                    return Err(AddrParseError::new(
                        "hostname contains illegal char",
                    ));
                }
            }

            Ok(Self { name })
        } else {
            Err(AddrParseError::new("empty hostname"))
        }
    }

    pub fn as_str(&self) -> &str {
        self.name.as_str()
    }
}

impl FromStr for Hostname {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

impl fmt::Display for Hostname {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", self.name)
    }
}

serde_display_tryfrom!(Hostname);

impl TryFrom<String> for Hostname {
    type Error = AddrParseError;
    fn try_from(s: String) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

impl<'a> TryFrom<&'a String> for Hostname {
    type Error = AddrParseError;
    fn try_from(s: &'a String) -> Result<Self, AddrParseError> {
        Self::new(s.as_str())
    }
}

impl<'a> TryFrom<&'a str> for Hostname {
    type Error = AddrParseError;
    fn try_from(s: &'a str) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

/// A port used by a socket address.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, addr::Port};
///
/// let port: Port = "*".try_into()?;
/// assert!(port.is_unspecified());
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum Port {
    /// An specified port number.
    Specified(u16),
    /// A system specified ephemeral port.
    Unspecified,
}

impl Port {
    pub fn is_specified(self) -> bool {
        if let Port::Specified(_) = self {
            true
        } else {
            false
        }
    }

    pub fn is_unspecified(self) -> bool {
        if let Port::Unspecified = self {
            true
        } else {
            false
        }
    }
}

impl FromStr for Port {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if !s.is_empty() {
            if s.starts_with('*') && s.len() == 1 {
                Ok(Port::Unspecified)
            } else {
                let port = u16::from_str(s)
                    .map_err(|_| AddrParseError::new("invalid port number"))?;
                Ok(Port::Specified(port))
            }
        } else {
            Err(AddrParseError::new("empty port"))
        }
    }
}

tryfrom_fromstr!(Port);

impl fmt::Display for Port {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Port::Specified(num) => write!(f, "{}", num),
            Port::Unspecified => write!(f, "*"),
        }
    }
}

serde_display_tryfrom!(Port);

/// An interface used for connecting or binding.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, addr::Interface};
///
/// let interface: Interface = "0.0.0.0".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub enum Interface {
    /// Connect or bind to an IP address.
    Ip(IpAddr),
    /// Connect or bind to a named address.
    Hostname(Hostname),
}

impl FromStr for Interface {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if !s.is_empty() {
            if let Ok(ip) = IpAddr::from_str(s) {
                Ok(Interface::Ip(ip))
            } else {
                let interface = Hostname::from_str(s)?;
                Ok(Interface::Hostname(interface))
            }
        } else {
            Err(AddrParseError::new("empty interface"))
        }
    }
}

tryfrom_fromstr!(Interface);

impl fmt::Display for Interface {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Interface::Ip(ip) => write!(f, "{}", ip),
            Interface::Hostname(interface) => write!(f, "{}", interface),
        }
    }
}

serde_display_tryfrom!(Interface);

/// A socket address with an [`Interface`] and a [`Port`].
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, addr::SocketAddr};
///
/// let host: SocketAddr = "127.0.0.1:3000".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
///
/// [`Interface`]: enum.Interface.html
/// [`Port`]: enum.Port.html
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct SocketAddr {
    interface: Interface,
    port: Port,
}

impl SocketAddr {
    pub fn new(interface: Interface, port: Port) -> Self {
        Self { interface, port }
    }

    pub fn interface(&self) -> &Interface {
        &self.interface
    }

    pub fn port(&self) -> Port {
        self.port
    }
}

impl FromStr for SocketAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        // We reverse search so that we don't have to deal will IPv6 syntax.
        if let Some(mid) = s.rfind(':') {
            let addr = {
                // Check for IPv6.
                if s.starts_with('[') && s.chars().nth(mid - 1).unwrap() == ']'
                {
                    let interface = Interface::from_str(&s[1..mid - 1])?;
                    let port = Port::from_str(&s[mid + 1..])?;

                    Self { interface, port }
                } else {
                    let interface = Interface::from_str(&s[0..mid])?;
                    let port = Port::from_str(&s[mid + 1..])?;

                    Self { interface, port }
                }
            };

            Ok(addr)
        } else {
            Err(AddrParseError::new("invalid addr format"))
        }
    }
}

tryfrom_fromstr!(SocketAddr);

impl fmt::Display for SocketAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}:{}", self.interface, self.port)
    }
}

serde_display_tryfrom!(SocketAddr);

impl From<net::SocketAddr> for SocketAddr {
    fn from(addr: net::SocketAddr) -> Self {
        Self::new(Interface::Ip(addr.ip()), Port::Specified(addr.port()))
    }
}

impl<'a> From<&'a SocketAddr> for SocketAddr {
    fn from(addr: &'a SocketAddr) -> Self {
        addr.to_owned()
    }
}

/// Specify a source address when connecting.
///
/// A `SrcAddr` differs from a `SocketAddr` since it allows an address with
/// with no port specified (an `Interface`).
///
/// A source address can be specified when a client communicate with a public
/// server from behind a private network. This allows the server's replies to
/// be routed properly.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, addr::SrcAddr};
///
/// // Specify an IPv4 addr with a unspecified port.
/// let src: SrcAddr = "192.168.1.17:*".try_into()?;
///
/// // Specify a network interface.
/// let src: SrcAddr = "eth0".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub enum SrcAddr {
    /// Bind to a socket address.
    Socket(SocketAddr),
    /// Bind to an interface.
    Interface(Interface),
}

impl FromStr for SrcAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if let Ok(addr) = SocketAddr::from_str(s) {
            Ok(SrcAddr::Socket(addr))
        } else {
            let host = Interface::from_str(s)?;
            Ok(SrcAddr::Interface(host))
        }
    }
}

tryfrom_fromstr!(SrcAddr);

impl fmt::Display for SrcAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            SrcAddr::Socket(addr) => write!(f, "{}", addr),
            SrcAddr::Interface(host) => write!(f, "{}", host),
        }
    }
}

serde_display_tryfrom!(SrcAddr);

impl From<SocketAddr> for SrcAddr {
    fn from(addr: SocketAddr) -> Self {
        SrcAddr::Socket(addr)
    }
}

impl<'a> From<&'a SocketAddr> for SrcAddr {
    fn from(addr: &'a SocketAddr) -> Self {
        SrcAddr::Socket(addr.to_owned())
    }
}

impl<'a> From<&'a SrcAddr> for SrcAddr {
    fn from(src: &'a SrcAddr) -> Self {
        src.to_owned()
    }
}

/// A socket address with the `TCP` transport.
///
/// # Supported Sockets
/// [`Dish`], [`Radio`], [`Client`] and [`Server]
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, TcpAddr};
///
/// // Connecting using a IPv4 address and bind to `eth0` interface.
/// let ipv4: TcpAddr = "eth0;192.168.1.1:5555".try_into()?;
///
/// // Connecting using a IPv6 address.
/// let ipv6: TcpAddr = "[2001:db8::1]:8080".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct TcpAddr {
    src: Option<SrcAddr>,
    host: SocketAddr,
}

impl TcpAddr {
    pub fn new<H>(host: H) -> Self
    where
        H: Into<SocketAddr>,
    {
        let host = host.into();
        Self { host, src: None }
    }

    pub fn add_src<S>(mut self, src: S) -> Self
    where
        S: Into<SrcAddr>,
    {
        let src = src.into();
        self.src = Some(src);
        self
    }

    pub fn host(&self) -> &SocketAddr {
        &self.host
    }

    pub fn src(&self) -> Option<&SrcAddr> {
        self.src.as_ref()
    }
}

impl FromStr for TcpAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if let Some(mid) = s.find(';') {
            let src = Some(SrcAddr::from_str(&s[..mid])?);
            let host = SocketAddr::from_str(&s[mid + 1..])?;

            Ok(Self { src, host })
        } else {
            let host = SocketAddr::from_str(s)?;

            Ok(Self { src: None, host })
        }
    }
}

tryfrom_fromstr!(TcpAddr);

impl fmt::Display for TcpAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.src.is_some() {
            write!(f, "{};{}", self.host, self.src.as_ref().unwrap())
        } else {
            write!(f, "{}", self.host)
        }
    }
}

serde_display_tryfrom!(TcpAddr);

impl From<SocketAddr> for TcpAddr {
    fn from(host: SocketAddr) -> Self {
        Self { host, src: None }
    }
}

impl IntoIterator for TcpAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a TcpAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl From<TcpAddr> for Endpoint {
    fn from(addr: TcpAddr) -> Endpoint {
        Endpoint::Tcp(addr)
    }
}

impl<'a> From<&'a TcpAddr> for Endpoint {
    fn from(addr: &'a TcpAddr) -> Endpoint {
        Endpoint::Tcp(addr.to_owned())
    }
}

/// A socket address with the `UDP` transport.
///
/// # Supported Sockets
/// [`Dish`], [`Radio`]
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, UdpAddr};
///
/// // Multicast - UDP port 5555 on a Multicast address
/// let addr: UdpAddr = "239.0.0.1:5555".try_into()?;
///
/// // Same as above using IPv6 with joining only on interface eth0.
/// let addr: UdpAddr = "eth0;[ff02::1]:5555".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct UdpAddr {
    src: Option<SrcAddr>,
    host: SocketAddr,
}

impl UdpAddr {
    /// # Example
    /// ```
    /// # fn main() -> Result<(), anyhow::Error> {
    /// use libzmq::{prelude::TryInto, UdpAddr, addr::SocketAddr};
    ///
    /// let host: SocketAddr = "localhost:5555".try_into()?;
    /// // We can use a reference here which will allocate.
    /// let udp = UdpAddr::new(&host);
    /// // We can also give ownership which does not allocate.
    /// let udp = UdpAddr::new(host);
    /// #
    /// #     Ok(())
    /// # }
    /// ```
    pub fn new<H>(host: H) -> Self
    where
        H: Into<SocketAddr>,
    {
        let host = host.into();
        Self { host, src: None }
    }

    /// # Example
    /// ```
    /// # fn main() -> Result<(), anyhow::Error> {
    /// use libzmq::{prelude::TryInto, UdpAddr, addr::{SrcAddr, SocketAddr}};
    ///
    /// let host: SocketAddr = "localhost:5555".try_into()?;
    /// let src: SrcAddr = "eth0".try_into()?;
    ///
    /// // We pass by reference which allocates, but we could
    /// // also give the ownership directly.
    /// let udp = UdpAddr::new(&host).add_src(&src);
    ///
    /// // Note that `SocketAddr` implement `Into<SrcAddr>`,
    /// // so this is also valid.
    /// let udp = UdpAddr::new(&host).add_src(&host);
    /// #
    /// #     Ok(())
    /// # }
    /// ```
    pub fn add_src<S>(mut self, src: S) -> Self
    where
        S: Into<SrcAddr>,
    {
        let src = src.into();
        self.src = Some(src);
        self
    }

    pub fn host(&self) -> &SocketAddr {
        &self.host
    }

    pub fn src(&self) -> Option<&SrcAddr> {
        self.src.as_ref()
    }
}

impl FromStr for UdpAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if let Some(mid) = s.find(';') {
            let src = Some(SrcAddr::from_str(&s[..mid])?);
            let host = SocketAddr::from_str(&s[mid + 1..])?;

            Ok(Self { src, host })
        } else {
            let host = SocketAddr::from_str(s)?;

            Ok(Self { src: None, host })
        }
    }
}

tryfrom_fromstr!(UdpAddr);

impl fmt::Display for UdpAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.src.is_some() {
            write!(f, "{};{}", self.host, self.src.as_ref().unwrap())
        } else {
            write!(f, "{}", self.host)
        }
    }
}

serde_display_tryfrom!(UdpAddr);

impl From<SocketAddr> for UdpAddr {
    fn from(host: SocketAddr) -> Self {
        Self { host, src: None }
    }
}

impl IntoIterator for UdpAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a UdpAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl From<UdpAddr> for Endpoint {
    fn from(addr: UdpAddr) -> Endpoint {
        Endpoint::Udp(addr)
    }
}

impl<'a> From<&'a UdpAddr> for Endpoint {
    fn from(addr: &'a UdpAddr) -> Endpoint {
        Endpoint::Udp(addr.to_owned())
    }
}

/// A socket address with the `PGM` transport.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, PgmAddr};
///
/// // Connecting to the multicast address 239.192.1.1, port 5555,
/// // using the network interface with the address 192.168.1.1
/// // and the PGM protocol
/// let addr: PgmAddr = "192.168.1.1;239.192.1.1:5555".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
///
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct PgmAddr {
    src: Option<SrcAddr>,
    host: SocketAddr,
}

impl PgmAddr {
    pub fn new<H>(host: H) -> Self
    where
        H: Into<SocketAddr>,
    {
        let host = host.into();
        Self { host, src: None }
    }

    /// A source address can be specified when a client communicate with a public
    /// server from behind a private network. This allows the server's replies to
    /// be routed properly.
    pub fn add_src<S>(mut self, src: S) -> Self
    where
        S: Into<SrcAddr>,
    {
        let src = src.into();
        self.src = Some(src);
        self
    }

    pub fn host(&self) -> &SocketAddr {
        &self.host
    }

    pub fn src(&self) -> Option<&SrcAddr> {
        self.src.as_ref()
    }
}

impl FromStr for PgmAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if let Some(mid) = s.find(';') {
            let src = Some(SrcAddr::from_str(&s[..mid])?);
            let host = SocketAddr::from_str(&s[mid + 1..])?;

            Ok(Self { src, host })
        } else {
            let host = SocketAddr::from_str(s)?;

            Ok(Self { src: None, host })
        }
    }
}

tryfrom_fromstr!(PgmAddr);

impl fmt::Display for PgmAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.src.is_some() {
            write!(f, "{};{}", self.host, self.src.as_ref().unwrap())
        } else {
            write!(f, "{}", self.host)
        }
    }
}

serde_display_tryfrom!(PgmAddr);

impl From<SocketAddr> for PgmAddr {
    fn from(host: SocketAddr) -> Self {
        Self { host, src: None }
    }
}

impl IntoIterator for PgmAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a PgmAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl From<PgmAddr> for Endpoint {
    fn from(addr: PgmAddr) -> Endpoint {
        Endpoint::Pgm(addr)
    }
}

impl<'a> From<&'a PgmAddr> for Endpoint {
    fn from(addr: &'a PgmAddr) -> Endpoint {
        Endpoint::Pgm(addr.to_owned())
    }
}

/// A socket address with the Encapsulated `PGM` transport.
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, EpgmAddr};
///
/// // Connecting to the multicast address 239.192.1.1, port 5555,
/// // using the first Ethernet network interface on Linux
/// // and the Encapsulated PGM protocol.
/// let addr: EpgmAddr = "eth0;239.192.1.1:5555".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct EpgmAddr {
    src: Option<SrcAddr>,
    host: SocketAddr,
}

impl EpgmAddr {
    pub fn new<H>(host: H) -> Self
    where
        H: Into<SocketAddr>,
    {
        let host = host.into();
        Self { host, src: None }
    }

    /// A source address can be specified when a client communicate with a public
    /// server from behind a private network. This allows the server's replies to
    /// be routed properly.
    pub fn add_src<S>(mut self, src: S) -> Self
    where
        S: Into<SrcAddr>,
    {
        let src = src.into();
        self.src = Some(src);
        self
    }

    pub fn host(&self) -> &SocketAddr {
        &self.host
    }

    pub fn src(&self) -> Option<&SrcAddr> {
        self.src.as_ref()
    }
}

impl FromStr for EpgmAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        if let Some(mid) = s.find(';') {
            let src = Some(SrcAddr::from_str(&s[..mid])?);
            let host = SocketAddr::from_str(&s[mid + 1..])?;

            Ok(Self { src, host })
        } else {
            let host = SocketAddr::from_str(s)?;

            Ok(Self { src: None, host })
        }
    }
}

tryfrom_fromstr!(EpgmAddr);

impl fmt::Display for EpgmAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.src.is_some() {
            write!(f, "{};{}", self.host, self.src.as_ref().unwrap())
        } else {
            write!(f, "{}", self.host)
        }
    }
}

serde_display_tryfrom!(EpgmAddr);

impl From<SocketAddr> for EpgmAddr {
    fn from(host: SocketAddr) -> Self {
        Self { host, src: None }
    }
}

impl IntoIterator for EpgmAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a EpgmAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl From<EpgmAddr> for Endpoint {
    fn from(addr: EpgmAddr) -> Endpoint {
        Endpoint::Epgm(addr)
    }
}

impl<'a> From<&'a EpgmAddr> for Endpoint {
    fn from(addr: &'a EpgmAddr) -> Endpoint {
        Endpoint::Epgm(addr.to_owned())
    }
}

/// A socket address with inter-thread transport.
///
/// The `inproc` address is a non-empty `String` with at most
/// [`INPROC_MAX_SIZE`] characters.
///
/// The `inproc` transport can only be used by sockets that share the same `Ctx`.
///
/// # Supported Sockets
/// [`Dish`], [`Radio`], [`Client`] and [`Server]
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, InprocAddr};
///
/// // Can be any arbitrary string.
/// let addr: InprocAddr = "test".try_into()?;
/// // Any character is allowed.
/// let addr: InprocAddr = "LKH*O&_[::O2134KG".try_into()?;
/// #
/// #     Ok(())
/// # }
/// ```
///
/// [`INPROC_MAX_SIZE`]: constant.INPROC_MAX_SIZE.html
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct InprocAddr {
    host: String,
}

impl InprocAddr {
    /// Create a new `InprocAddr` addr from a string.
    ///
    /// The string cannot be empty or longuer than `INPROC_MAX_SIZE`.
    pub fn new<S>(host: S) -> Result<Self, AddrParseError>
    where
        S: Into<String>,
    {
        let host = host.into();

        if host.is_empty() {
            Err(AddrParseError::new("empty host"))
        } else if host.len() > INPROC_MAX_SIZE {
            Err(AddrParseError::new(
                "host cannot exceed `INPROC_MAX_SIZE` chars",
            ))
        } else {
            Ok(Self { host })
        }
    }

    /// Creates a new unique `InprocAddr` by generating a [uuid v4].
    ///
    /// This is the `inproc` equivalent of a system assigned port.
    ///
    /// # Example
    /// ```
    /// # fn main() -> Result<(), anyhow::Error> {
    /// use libzmq::{prelude::*, InprocAddr, ServerBuilder};
    ///
    /// let addr = InprocAddr::new_unique();
    ///
    /// let server = ServerBuilder::new()
    ///     .bind(addr)
    ///     .build()?;
    /// #
    /// #     Ok(())
    /// # }
    /// ```
    ///
    /// [uuid v4]: https://docs.rs/uuid/0.7.4/uuid/struct.Uuid.html#method.new_v4
    pub fn new_unique() -> Self {
        Self::new(Uuid::new_v4().to_string()).unwrap()
    }

    /// Returns the underlying string of the `InprocAddr`.
    pub fn as_str(&self) -> &str {
        self.host.as_str()
    }
}

impl FromStr for InprocAddr {
    type Err = AddrParseError;
    fn from_str(s: &str) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

impl fmt::Display for InprocAddr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.host.fmt(f)
    }
}

serde_display_tryfrom!(InprocAddr);

impl TryFrom<String> for InprocAddr {
    type Error = AddrParseError;
    fn try_from(s: String) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

impl<'a> TryFrom<&'a String> for InprocAddr {
    type Error = AddrParseError;
    fn try_from(s: &'a String) -> Result<Self, AddrParseError> {
        Self::new(s.as_str())
    }
}

impl<'a> TryFrom<&'a str> for InprocAddr {
    type Error = AddrParseError;
    fn try_from(s: &'a str) -> Result<Self, AddrParseError> {
        Self::new(s)
    }
}

impl IntoIterator for InprocAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a InprocAddr {
    type Item = Self;
    type IntoIter = option::IntoIter<Self>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl From<InprocAddr> for Endpoint {
    fn from(addr: InprocAddr) -> Endpoint {
        Endpoint::Inproc(addr)
    }
}

impl<'a> From<&'a InprocAddr> for Endpoint {
    fn from(addr: &'a InprocAddr) -> Endpoint {
        Endpoint::Inproc(addr.to_owned())
    }
}

/// A transport and a transport-specific address supported by ØMQ.
///
/// The transport specifies the underlying protocol to use. The address
/// specifies the transport-specific address to connect to.
///
/// # Bind vs. Connect
/// For most transports and socket types the connection is not performed
/// immediately but as needed by ØMQ. Thus a successful call to `connect`
/// does not mean that the connection was or could actually be established.
/// Because of this, for most transports and socket types the order in
/// which a server socket is bound and a client socket is connected to it
/// does not matter.
///
/// # Summary of Transports
/// | Transport `str` | Description                                 | Reference      |
/// | ----------------|:-------------------------------------------:|:--------------:|
/// | "tcp"           | unicast transport using TCP                 | [`zmq_tcp`]    |
/// | "udp"           | UDP multicast and unicast transport         | [`zmq_udp`]    |
/// | "ipc"           | local inter-process communication transport | [`zmq_ipc`]    |
/// | "inproc"        | local in-process communication transport    | [`zmq_inproc`] |
/// | "pgm", "epgm"   | reliable multicast transport using PGM      | [`zmq_pgm`]    |
/// | "vmci"          | virtual machine communications interface    | [`zmq_vmci`]   |
///
/// # Example
/// ```
/// # fn main() -> Result<(), anyhow::Error> {
/// use libzmq::{prelude::TryInto, TcpAddr, addr::Endpoint};
///
/// // IPv4 addr with TCP transport.
/// let addr: TcpAddr = "127.0.0.1:9090".try_into()?;
/// let endpoint: Endpoint = addr.into();
/// assert!(endpoint.is_tcp());
/// #
/// #     Ok(())
/// # }
/// ```
///
/// This enum type is non-exhaustive and could have additional variants
/// added in future. Therefore, when matching against variants of
/// non-exhaustive enums, an extra wildcard arm must be added to account
/// for any future variants.
///
/// [`zmq_tcp`]: http://api.zeromq.org/master:zmq_tcp
/// [`zmq_udp`]: http://api.zeromq.org/master:zmq-udp
/// [`zmq_ipc`]: http://api.zeromq.org/master:zmq_ipc
/// [`zmq_inproc`]: http://api.zeromq.org/master:zmq_inproc
/// [`zmq_pgm`]: http://api.zeromq.org/master:zmq_pgm
/// [`zmq_vmci`]: http://api.zeromq.org/master:zmq_vmci
#[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum Endpoint {
    /// Unicast transport using TCP, see [`zmq_tcp`].
    ///
    /// [`zmq_tcp`]: http://api.zeromq.org/master:zmq-tcp
    Tcp(TcpAddr),
    /// ØMQ UDP multicast and unicast transport
    ///
    /// [`zmq_udp`]: http://api.zeromq.org/master:zmq-udp
    Udp(UdpAddr),
    /// Local in-process (inter-thread) communication transport
    ///
    /// [`zmq_inproc`]: http://api.zeromq.org/master:zmq-inproc
    Inproc(InprocAddr),
    /// Reliable multicast transport using PGM, see [`zmq_pgm`].
    ///
    /// [`zmq_pgm`]: http://api.zeromq.org/master:zmq-pgm
    Pgm(PgmAddr),
    /// Reliable multicast transport using EPGM, see [`zmq_pgm`].
    ///
    /// [`zmq_pgm`]: http://api.zeromq.org/master:zmq-pgm
    Epgm(EpgmAddr),
}

impl Endpoint {
    /// Returns `true` if the endpoint uses the `Tcp` transport.
    pub fn is_tcp(&self) -> bool {
        if let Endpoint::Tcp(_) = self {
            true
        } else {
            false
        }
    }

    /// Returns `true` if the endpoint uses the `Ucp` transport.
    pub fn is_udp(&self) -> bool {
        if let Endpoint::Udp(_) = self {
            true
        } else {
            false
        }
    }

    /// Returns `true` if the endpoint uses the `Inproc` transport.
    pub fn is_inproc(&self) -> bool {
        if let Endpoint::Inproc(_) = self {
            true
        } else {
            false
        }
    }
    /// Returns `true` if the endpoint uses the `Pgm` transport.
    pub fn is_pgm(&self) -> bool {
        if let Endpoint::Pgm(_) = self {
            true
        } else {
            false
        }
    }
    /// Returns `true` if the endpoint uses the `Epgm` transport.
    pub fn is_edpgm(&self) -> bool {
        if let Endpoint::Epgm(_) = self {
            true
        } else {
            false
        }
    }

    pub(crate) fn from_zmq(s: &str) -> Self {
        let index = s.find("://").unwrap();

        match &s[0..index] {
            "tcp" => {
                let addr = TcpAddr::from_str(&s[index + 3..]).unwrap();
                Endpoint::Tcp(addr)
            }
            "inproc" => {
                let addr = InprocAddr::from_str(&s[index + 3..]).unwrap();
                Endpoint::Inproc(addr)
            }
            "udp" => {
                let addr = UdpAddr::from_str(&s[index + 3..]).unwrap();
                Endpoint::Udp(addr)
            }
            "pgm" => {
                let addr = PgmAddr::from_str(&s[index + 3..]).unwrap();
                Endpoint::Pgm(addr)
            }
            "epgm" => {
                let addr = EpgmAddr::from_str(&s[index + 3..]).unwrap();
                Endpoint::Epgm(addr)
            }
            _ => unreachable!(),
        }
    }

    pub(crate) fn to_zmq(&self) -> String {
        match self {
            Endpoint::Tcp(addr) => format!("tcp://{}", addr),
            Endpoint::Inproc(addr) => format!("inproc://{}", addr),
            Endpoint::Udp(addr) => format!("udp://{}", addr),
            Endpoint::Epgm(addr) => format!("pgm://{}", addr),
            Endpoint::Pgm(addr) => format!("epgm://{}", addr),
        }
    }
}

impl IntoIterator for Endpoint {
    type Item = Endpoint;
    type IntoIter = option::IntoIter<Endpoint>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> IntoIterator for &'a Endpoint {
    type Item = &'a Endpoint;
    type IntoIter = option::IntoIter<&'a Endpoint>;

    fn into_iter(self) -> Self::IntoIter {
        Some(self).into_iter()
    }
}

impl<'a> From<&'a Endpoint> for Endpoint {
    fn from(e: &'a Endpoint) -> Self {
        e.to_owned()
    }
}

impl AsRef<Endpoint> for Endpoint {
    fn as_ref(&self) -> &Endpoint {
        &self
    }
}

#[cfg(test)]
mod test {
    macro_rules! test_addr_ser_de {
        ($mod: ident, $name: ty, $string: expr) => {
            mod $mod {
                use crate::{addr::*, prelude::*, *};

                #[test]
                fn test_ser_de() {
                    let addr: $name = $string.try_into().unwrap();
                    let endpoint: Endpoint = addr.into();

                    let ron = serde_yaml::to_string(&endpoint).unwrap();
                    let de: Endpoint = serde_yaml::from_str(&ron).unwrap();
                    assert_eq!(endpoint, de);
                }
            }
        };
    }

    test_addr_ser_de!(tcp, TcpAddr, "0.0.0.0:3000");
    test_addr_ser_de!(udp, UdpAddr, "0.0.0.0:3000");
    test_addr_ser_de!(pgm, PgmAddr, "0.0.0.0:3000");
    test_addr_ser_de!(epgm, EpgmAddr, "0.0.0.0:3000");
    test_addr_ser_de!(inproc, InprocAddr, "test");
}