xmpp-addr 0.13.1

An implementation of the XMPP Address format (Jabber ID) defined in RFC 7622.
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
// Copyright 2017 The Mellium Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Implements the XMPP Address Format as defined in RFC 7622.
//!
//! For historical reasons, XMPP addresses are called "Jabber Identifiers", or JIDs.
//! JIDs are comprised of three parts: an optional localpart (a username or account), the
//! domainpart (the server), and an optional resourcepart (a specific client) and look more or less
//! like an email where the first two parts are demarcated by the '@' character but with the
//! resourcepart added to the end and demarcated by the '/' character, eg:
//!
//! > localpart@domainpart/resourcepart
//!
//! Like email, JIDs allow routing across networks based on the domainpart, and local routing based
//! on the localpart. Unlike emails however, JIDs also allow for last-mile-delivery to *specific*
//! clients (or "resources") using the resourcepart. Also unlike email, JIDs support
//! internationalization.
//!
//! **Note well** that this package currently isn't fully compliant with [RFC 7622]; it does not
//! perform the PRECIS ([RFC 8264]) enforcement step.
//!
//! [RFC 7622]: https://tools.ietf.org/html/rfc7622
//! [RFC 8264]: https://tools.ietf.org/html/rfc8264
//!
//! # Features
//!
//! The following feature flag can be used when compiling the crate:
//!
//! - `try_from` — build with experimental [`TryFrom`] impls on nightly
//!
//! [`TryFrom`]: https://doc.rust-lang.org/std/convert/trait.TryFrom.html
//!
//! No features are enabled by default.
//!
//! # Examples
//!
//! ## From parts (stable)
//!
//! ```rust
//! # use xmpp_addr::Jid;
//! # fn main() -> Result<(), xmpp_addr::Error>{
//! let j = Jid::new("feste", "example.net", None)?;
//! assert_eq!(j, "feste@example.net");
//! #     Ok(())
//! # }
//! ```
//!
//! ## From parts (nightly)
//!
#![cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#![cfg_attr(feature = "try_from", doc = " ```rust")]
//! #![feature(try_from)]
//! # use std::convert::{ TryInto, TryFrom };
//! # use xmpp_addr::Jid;
//! # fn main() -> Result<(), xmpp_addr::Error> {
//! let j: Jid = ("feste", "example.net").try_into()?;
//! assert_eq!(j, "feste@example.net");
//!
//! let j = Jid::try_from(("feste", "example.net", "avsgasje"))?;
//! assert_eq!(j, "feste@example.net/avsgasje");
//! #     Ok(())
//! # }
//! ```
//!
//! ## Parsing (stable)
//!
//! ```rust
//! # use xmpp_addr::Jid;
//! # fn main() -> Result<(), xmpp_addr::Error> {
//! let j = Jid::from_str("juliet@example.net/balcony")?;
//! assert_eq!(j.localpart(), Some("juliet"));
//! assert_eq!(j.domainpart(), "example.net");
//! assert_eq!(j.resourcepart(), Some("balcony"));
//! #     Ok(())
//! # }
//! ```
//!
//! ## Parsing (nightly)
//!
#![cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#![cfg_attr(feature = "try_from", doc = " ```rust")]
//! #![feature(try_from)]
//! # use std::convert::{ TryInto, TryFrom };
//! # use xmpp_addr::Jid;
//! # fn main() -> Result<(), xmpp_addr::Error> {
//! let j: Jid = "orsino@example.net/ilyria".try_into()?;
//! assert_eq!(j, "orsino@example.net/ilyria");
//!
//! let j = Jid::try_from("juliet@example.net/balcony")?;
//! assert_eq!(j, "juliet@example.net/balcony");
//! #     Ok(())
//! # }
//! ```

#![deny(missing_docs)]
#![cfg_attr(feature = "try_from", feature(try_from))]
#![doc(html_root_url = "https://docs.rs/xmpp-addr/0.13.1")]

use unicode_normalization::UnicodeNormalization;

use std::borrow;
use std::cmp;
use std::convert;
use std::fmt;
use std::net;
use std::result;
use std::str;
use std::str::FromStr;

/// Possible error values that can occur when parsing JIDs.
#[derive(Debug)]
pub enum Error {
    /// Returned if an empty string is being parsed.
    EmptyJid,

    /// Returned if the localpart is empty (eg. "@example.net").
    EmptyLocal,

    /// Returned if the localpart is longer than 1023 bytes.
    LongLocal,

    /// Returned if the domain part is too short to be a valid domain, hostname, or IP address.
    ShortDomain,

    /// Returned if the domain part is too long to be a valid domain.
    LongDomain,

    /// Returned if the resourcepart is empty (eg. "example.net/"
    EmptyResource,

    /// Returned if the resourcepart is longer than 1023 bytes.
    LongResource,

    /// Returned if a forbidden character was found in any part of the JID.
    ForbiddenChars,

    /// Returned if an error occured while attempting to parse the domainpart of the JID as an IPv6
    /// address.
    Addr(net::AddrParseError),

    /// Returned if an error occured while performing IDNA2008 processing on the domainpart of the
    /// JID.
    IDNA(idna::uts46::Errors),
}

/// A custom result type for JIDs that elides the [error type].
///
/// [error type]: ./enum.Error.html
pub type Result<T> = result::Result<T, Error>;

/// A parsed JID.
#[derive(Debug, Clone, PartialEq, Eq, Ord, PartialOrd)]
pub struct Jid<'a> {
    local: Option<borrow::Cow<'a, str>>,
    domain: borrow::Cow<'a, str>,
    resource: Option<borrow::Cow<'a, str>>,
}

impl<'a> Jid<'a> {
    /// Splits a JID formatted as a string into its localpart, domainpart, and resourcepart.
    /// The localpart and resourcepart are optional, but the domainpart is always returned.
    ///
    /// # Errors
    ///
    /// This function performs a "naive" string split and does not perform any validation of the
    /// individual parts other than to make sure that required parts exist. For example
    /// "@example.com" will return an error ([`EmptyLocal`]), but "%@example.com" will not (even
    /// though "%" is not a valid localpart). The length of localparts and resourceparts is also
    /// not checked (other than if they're empty). This is because when creating an actual JID it
    /// is possible for certain Unicode characters to be canonicalized into a shorter length
    /// encoding, meaning that a part that was previously too long may suddenly fit in the maximum
    /// length. [`ShortDomain`] may be returned because we know that domains will never become
    /// longer after performing IDNA2008 operations, but [`LongDomain`] may not be returned for the
    /// same reasons as mentioned above.
    ///
    /// Possible errors include:
    ///
    ///   - [`EmptyJid`]  \(eg. `""`)
    ///   - [`EmptyLocal`]  \(`"@example.com"`)
    ///   - [`EmptyResource`]  \(`"example.com/"`)
    ///   - [`ShortDomain`]  \(`"a"`, `"foo@/bar"`)
    ///
    /// [error variant]: ./enum.Error.html
    /// [`EmptyJid`]: ./enum.Error.html#EmptyJid.v
    /// [`EmptyLocal`]: ./enum.Error.html#EmptyLocal.v
    /// [`EmptyResource`]: ./enum.Error.html#EmptyResource.v
    /// [`ShortDomain`]: ./enum.Error.html#ShortDomain.v
    /// [`LongDomain`]: ./enum.Error.html#LongDomain.v
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let (lp, dp, rp) = Jid::split("feste@example.net")?;
    /// assert_eq!(lp, Some("feste"));
    /// assert_eq!(dp, "example.net");
    /// assert_eq!(rp, None);
    /// #     Ok(())
    /// # }
    /// ```
    pub fn split(s: &'a str) -> Result<(Option<&'a str>, &'a str, Option<&'a str>)> {
        if s == "" {
            return Err(Error::EmptyJid);
        }

        // RFC 7622 §3.1.  Fundamentals:
        //
        //    Implementation Note: When dividing a JID into its component parts,
        //    an implementation needs to match the separator characters '@' and
        //    '/' before applying any transformation algorithms, which might
        //    decompose certain Unicode code points to the separator characters.
        //
        // so let's do that now. First we'll parse the domainpart using the rules
        // defined in §3.2:
        //
        //    The domainpart of a JID is the portion that remains once the
        //    following parsing steps are taken:
        //
        //    1.  Remove any portion from the first '/' character to the end of the
        //        string (if there is a '/' character present).

        let mut chars = s.char_indices();
        let sep = chars.find(|&c| match c {
            (_, '@') | (_, '/') => true,
            _ => false,
        });

        let (lpart, dpart, rpart) = match sep {
            // If there are no part separators at all, the entire string is a domainpart.
            None => (None, s, None),
            // There is a resource part, and we did not find a localpart (the first separator found
            // was the first '/').
            Some((i, '/')) => (None, &s[0..i], Some(&s[i + 1..])),
            // The JID ends with the '@' sign
            Some((i, '@')) if i + 1 == s.len() => return Err(Error::ShortDomain),
            // We found a local part, so keep searching to try and find a resource part.
            Some((i, '@')) => {
                // Continue looking for a '/'.
                let slash = chars.find(|&c| match c {
                    (_, '/') => true,
                    _ => false,
                });

                // RFC 7622 §3.3.1 provides a small table of characters which are still not allowed in
                // localpart's even though the IdentifierClass base class and the UsernameCaseMapped
                // profile don't forbid them; disallow them here.
                if s[0..i].contains(&['"', '&', '\'', '/', ':', '<', '>', '@', '`'][..]) {
                    return Err(Error::ForbiddenChars);
                }
                match slash {
                    // This is a bare JID.
                    None => (Some(&s[0..i]), &s[i + 1..], None),
                    // There is a '/', but it's immediately after the '@' (or there is a short
                    // domain part between them).
                    Some((j, _)) if j - i < 3 => return Err(Error::ShortDomain),
                    // This is a full JID.
                    Some((j, _)) => (Some(&s[0..i]), &s[i + 1..j], Some(&s[j + 1..])),
                }
            }
            _ => unreachable!(),
        };

        // We'll throw out any trailing dots on domainparts, since they're ignored:
        //
        //    If the domainpart includes a final character considered to be a label
        //    separator (dot) by [RFC1034], this character MUST be stripped from
        //    the domainpart before the JID of which it is a part is used for the
        //    purpose of routing an XML stanza, comparing against another JID, or
        //    constructing an XMPP URI or IRI [RFC5122].  In particular, such a
        //    character MUST be stripped before any other canonicalization steps
        //    are taken.
        Ok((lpart, dpart.trim_end_matches('.'), rpart))
    }

    /// Constructs a JID from its constituent parts. The localpart is generally the username of a
    /// user on a particular server, the domainpart is a domain, hostname, or IP address where the
    /// user or entity resides, and the resourcepart identifies a specific client. Everything but
    /// the domain is optional.
    ///
    /// # Errors
    ///
    /// If the localpart or resourcepart passed to this function is not valid, or the domainpart
    /// fails IDNA processing or is not a valid IPv6 address, this function returns an [error
    /// variant].
    ///
    /// [error variant]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::new("feste", "example.net", None)?;
    /// assert_eq!(j, "feste@example.net");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn new<L, R>(local: L, domain: &'a str, resource: R) -> Result<Jid<'a>>
    where
        L: Into<Option<&'a str>>,
        R: Into<Option<&'a str>>,
    {
        Ok(Jid {
            local: match local.into() {
                None => None,
                Some(l) => Some(Jid::process_local(l)?),
            },
            domain: match Jid::process_domain(domain) {
                Err(err) => return Err(err),
                Ok(d) => d,
            },
            resource: match resource.into() {
                None => None,
                Some(r) => Some(Jid::process_resource(r)?),
            },
        })
    }

    // TODO: This should all be handled by the PRECIS UsernameCaseMapped profile.
    fn process_local(local: &'a str) -> Result<borrow::Cow<'a, str>> {
        let local: borrow::Cow<'a, str> = if local.is_ascii() {
            // ASCII fast path
            // TODO: JIDs aren't likely to have long localparts; are multiple scans worth it just
            // to maybe avoid an allocation?
            if local.bytes().all(|c| c.is_ascii_lowercase()) {
                local.into()
            } else {
                local.to_ascii_lowercase().into()
            }
        } else {
            // Contains characters outside the ASCII range (needs NFC)
            local.chars().flat_map(|c| c.to_lowercase()).nfc().collect()
        };
        match local.len() {
            0 => Err(Error::EmptyLocal),
            l if l > 1023 => Err(Error::LongLocal),
            _ => Ok(local),
        }
    }

    fn process_domain(domain: &'a str) -> Result<borrow::Cow<'a, str>> {
        let is_v6 = if domain.starts_with('[') && domain.ends_with(']') {
            // This should be an IPv6 address, validate it.
            let inner = unsafe { domain.get_unchecked(1..domain.len() - 1) };
            match net::Ipv6Addr::from_str(inner) {
                Ok(_) => true,
                Err(v) => return Err(Error::Addr(v)),
            }
        } else {
            false
        };

        let dlabel: borrow::Cow<'a, str> = if !is_v6 {
            let (dlabel, result) = idna::domain_to_unicode(domain);
            match result {
                Ok(_) => dlabel.into(),
                Err(e) => return Err(Error::IDNA(e)),
            }
        } else {
            domain.into()
        };

        if dlabel.len() > 1023 {
            return Err(Error::LongDomain);
        }
        if dlabel.len() < 1 {
            return Err(Error::ShortDomain);
        }

        Ok(dlabel)
    }

    fn process_resource(res: &'a str) -> Result<borrow::Cow<'a, str>> {
        let res: borrow::Cow<'a, str> = if res.is_ascii() {
            res.into()
        } else {
            // TODO: This should be done with a separate PRECIS library and the preparation step of
            // the OpaqueString class should be applied first
            res.chars()
                // RFC 7613 §4.2.2:
                //    2.  Additional Mapping Rule: Any instances of non-ASCII space MUST be
                //        mapped to ASCII space (U+0020); a non-ASCII space is any Unicode
                //        code point having a Unicode general category of "Zs" (with the
                //        exception of U+0020).
                .map(|c| if c.is_whitespace() { '\u{0020}' } else { c })
                // RFC 7613 §4.2.2:
                //    4.  Normalization Rule: Unicode Normalization Form C (NFC) MUST be
                //        applied to all characters.
                .nfc()
                .collect()
        };
        match res.len() {
            0 => Err(Error::EmptyResource),
            r if r > 1023 => Err(Error::LongResource),
            _ => Ok(res),
        }
    }

    /// Construct a JID containing only a domain part.
    ///
    /// # Errors
    ///
    /// If domain fails the IDNA "to Unicode" operation, or is enclosed in square brackets ("\[]")
    /// but is not a valid IPv6 address, this function returns an [error variant].
    ///
    /// [error variant]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_domain("example.net")?;
    /// assert_eq!(j, "example.net");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn from_domain(domain: &'a str) -> Result<Jid<'a>> {
        Jid::new(None, domain, None)
    }

    /// Consumes a JID to construct a bare JID (a JID without a resourcepart).
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::new("feste", "example.net", "res")?;
    /// assert_eq!(j.bare(), "feste@example.net");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn bare(self) -> Jid<'a> {
        Jid {
            local: self.local,
            domain: self.domain,
            resource: None,
        }
    }

    /// Consumes a JID to construct a JID with only the domainpart.
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::new("feste", "example.net", "res")?;
    /// assert_eq!(j.domain(), "example.net");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn domain(self) -> Jid<'a> {
        Jid {
            local: None,
            domain: self.domain,
            resource: None,
        }
    }

    /// Consumes a JID to construct a new JID with the given localpart.
    ///
    /// # Errors
    ///
    /// If the localpart is too long [`Error::LongLocal`] is returned.
    ///
    /// [`Error::LongLocal`]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("example.net")?;
    /// assert_eq!(j.with_local("feste")?, "feste@example.net");
    ///
    /// let j = Jid::from_str("iago@example.net")?;
    /// assert_eq!(j.with_local(None)?, "example.net");
    ///
    /// let j = Jid::from_str("feste@example.net")?;
    /// assert!(j.with_local("").is_err());
    /// #     Ok(())
    /// # }
    /// ```
    pub fn with_local<T: Into<Option<&'a str>>>(self, local: T) -> Result<Jid<'a>> {
        Ok(Jid {
            local: match local.into() {
                Some(l) => Some(Jid::process_local(l)?),
                None => None,
            },
            domain: self.domain,
            resource: self.resource,
        })
    }

    /// Consumes a JID to construct a new JID with the given domainpart.
    ///
    /// # Errors
    ///
    /// If the domain is too long, too short, or fails IDNA processing, an [error variant] is
    /// returned.
    ///
    /// [error variant]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("feste@example.net")?;
    /// assert_eq!(j.with_domain("example.org")?, "feste@example.org");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn with_domain(self, domain: &'a str) -> Result<Jid<'a>> {
        Ok(Jid {
            local: self.local,
            domain: match Jid::process_domain(domain) {
                Err(err) => return Err(err),
                Ok(d) => d,
            },
            resource: self.resource,
        })
    }

    /// Consumes a JID to construct a new JID with the given resourcepart.
    ///
    /// # Errors
    ///
    /// If the resource is too long [`Error::LongResource`] is returned.
    ///
    /// [`Error::LongResource`]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// Basic usage:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # use xmpp_addr::Error;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("feste@example.net")?;
    /// assert_eq!(j.with_resource("1234")?, "feste@example.net/1234");
    ///
    /// let j = Jid::from_str("feste@example.net/1234")?;
    /// assert_eq!(j.with_resource(None)?, "feste@example.net");
    ///
    /// let j = Jid::from_str("feste@example.net")?;
    /// assert!(j.with_resource("").is_err());
    /// #     Ok(())
    /// # }
    /// ```
    pub fn with_resource<T: Into<Option<&'a str>>>(self, resource: T) -> Result<Jid<'a>> {
        Ok(Jid {
            local: self.local,
            domain: self.domain,
            resource: match resource.into() {
                Some(r) => Some(Jid::process_resource(r)?),
                None => None,
            },
        })
    }

    /// Parse a string to create a Jid.
    ///
    /// This does not implement the `FromStr` trait because the Jid type requires an explicit
    /// lifetime annotation and the `from_str` method of `FromStr` uses an implicit annotation
    /// which is not compatible with the Jid type.
    ///
    /// # Errors
    ///
    /// If the entire string or any part of the JID is empty or not valid, or the domainpart fails
    /// IDNA processing or is not a valid IPv6 address, this function returns an [error variant].
    ///
    /// [error variant]: ./enum.Error.html
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("juliet@example.net/balcony")?;
    /// assert_eq!(j, "juliet@example.net/balcony");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn from_str(s: &'a str) -> Result<Jid<'a>> {
        let (lpart, dpart, rpart) = Jid::split(s)?;
        Jid::new(lpart, dpart, rpart)
    }

    /// Returns the localpart of the JID in canonical form.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("mercutio@example.net/rp")?;
    /// assert_eq!(j.localpart(), Some("mercutio"));
    ///
    /// let j = Jid::from_str("example.net/rp")?;
    /// assert!(j.localpart().is_none());
    /// #     Ok(())
    /// # }
    /// ```
    pub fn localpart(&self) -> Option<&str> {
        match self.local {
            None => None,
            Some(ref l) => Some(&l[..]),
        }
    }

    /// Returns the domainpart of the JID in canonical form.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("mercutio@example.net/rp")?;
    /// assert_eq!(j.domainpart(), "example.net");
    /// #     Ok(())
    /// # }
    /// ```
    pub fn domainpart(&self) -> &str {
        &(self.domain)
    }

    /// Returns the resourcepart of the JID in canonical form.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// # fn main() -> Result<(), xmpp_addr::Error> {
    /// let j = Jid::from_str("example.net/rp")?;
    /// assert_eq!(j.resourcepart(), Some("rp"));
    ///
    /// let j = Jid::from_str("feste@example.net")?;
    /// assert!(j.resourcepart().is_none());
    /// #     Ok(())
    /// # }
    /// ```
    pub fn resourcepart(&self) -> Option<&str> {
        match self.resource {
            None => None,
            Some(ref r) => Some(&r[..]),
        }
    }

    /// Constructs a JID from its constituent parts, bypassing safety checks.
    /// A `None` value for the localpart or resourcepart indicates that there is no localpart or
    /// resourcepart. A value of `Some("")` (although note that the `Some()` wrapper may be elided)
    /// indicates that the localpart or resourcepart is empty, which is invalid, but allowed by
    /// this unsafe function (eg. `@example.com`).
    ///
    /// # Examples
    ///
    /// Constructing an invalid JID:
    ///
    /// ```rust
    /// # use xmpp_addr::Jid;
    /// unsafe {
    ///     let j = Jid::new_unchecked(r#"/o\"#, "[badip]", None);
    ///     assert_eq!(j.localpart(), Some(r#"/o\"#));
    ///     assert_eq!(j.domainpart(), "[badip]");
    ///     assert_eq!(j.resourcepart(), None);
    ///
    ///     // Note that comparisons you would expect to work may fail when creating unsafe JIDs.
    ///     assert_ne!(j, r#"/o\@[badip]"#);
    ///
    ///     let j = Jid::new_unchecked("", "example.com", "");
    ///     assert_eq!(j, "@example.com/");
    /// }
    /// ```
    pub unsafe fn new_unchecked<L, R>(local: L, domain: &'a str, resource: R) -> Jid<'a>
    where
        L: Into<Option<&'a str>>,
        R: Into<Option<&'a str>>,
    {
        Jid {
            local: match local.into() {
                None => None,
                Some(s) => Some(s.into()),
            },
            domain: domain.into(),
            resource: match resource.into() {
                None => None,
                Some(s) => Some(s.into()),
            },
        }
    }
}

/// Format the JID in its canonical string form.
///
/// # Examples
///
/// Formatting and printing:
///
/// ```rust
/// # use xmpp_addr::Jid;
/// # fn main() -> Result<(), xmpp_addr::Error> {
/// let j = Jid::from_str("viola@example.net")?;
///
/// assert_eq!(format!("{}", j), "viola@example.net");
/// #     Ok(())
/// # }
/// ```
impl fmt::Display for Jid<'_> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self.local {
            None => {}
            Some(ref l) => write!(f, "{}@", l)?,
        }
        write!(f, "{}", self.domain)?;
        match self.resource {
            None => {}
            Some(ref r) => write!(f, "/{}", r)?,
        }
        Ok(())
    }
}

/// Create a bare JID from a 2-tuple.
///
/// # Errors
///
/// If the first item in the tuple is not a valid localpart or the second item in the tuple fails
/// IDNA processing or is not a valid IPv6 address, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::{Jid, Result};
/// # fn main() -> std::result::Result<(), xmpp_addr::Error> {
/// let j: Jid = ("mercutio", "example.net").try_into()?;
/// assert_eq!(j, "mercutio@example.net");
///
/// let j: Result<Jid> = ("", "example.net").try_into();
/// assert!(j.is_err());
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<(&'a str, &'a str)> for Jid<'a> {
    type Error = Error;

    fn try_from(parts: (&'a str, &'a str)) -> result::Result<Self, Self::Error> {
        Jid::new(Some(parts.0), parts.1, None)
    }
}

/// Create a bare JID from a 2-tuple where the localpart is optional.
///
/// # Errors
///
/// If the first item in the tuple is not a valid localpart or the second item in the tuple fails
/// IDNA processing or is not a valid IPv6 address, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::{Jid, Result};
/// # fn main() -> std::result::Result<(), xmpp_addr::Error> {
/// let j: Jid = (Some("mercutio"), "example.net").try_into()?;
/// assert_eq!(j, "mercutio@example.net");
///
/// let j: Jid = (None, "example.net").try_into()?;
/// assert_eq!(j, "example.net");
///
/// let j: Result<Jid> = (Some(""), "example.net").try_into();
/// assert!(j.is_err());
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<(Option<&'a str>, &'a str)> for Jid<'a> {
    type Error = Error;

    fn try_from(parts: (Option<&'a str>, &'a str)) -> result::Result<Self, Self::Error> {
        Jid::new(parts.0, parts.1, None)
    }
}

/// Create a JID with a domain and resourcepart from a 2-tuple where the resourcepart is optional.
/// Generally speaking, this is not as useful as the other `TryFrom` implementatoins, but is
/// included for completenesses sake or for custom clustering implementations.
///
/// # Errors
///
/// If the first item in the tuplefails IDNA processing or is not a valid IPv6 address or the
/// second item in the tuple is not a valid resourcepart, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::{Jid, Result};
/// # fn main() -> std::result::Result<(), xmpp_addr::Error> {
/// let j: Jid = ("example.net", Some("node1432")).try_into()?;
/// assert_eq!(j, "example.net/node1432");
///
/// let j: Jid = ("example.net", None).try_into()?;
/// assert_eq!(j, "example.net");
///
/// let j: Result<Jid> = ("example.net", Some("")).try_into();
/// assert!(j.is_err());
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<(&'a str, Option<&'a str>)> for Jid<'a> {
    type Error = Error;

    fn try_from(parts: (&'a str, Option<&'a str>)) -> result::Result<Self, Self::Error> {
        Jid::new(None, parts.0, parts.1)
    }
}

/// Creates a full JID from a 3-tuple.
///
/// # Errors
///
/// If the first item in the tuple is not a valid localpart, the second item in the tuple fails
/// IDNA processing or is not a valid IPv6 address, or the third item in the tuple is not a valid
/// domainpart, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::{Jid, Result};
/// # fn main() -> std::result::Result<(), xmpp_addr::Error> {
/// let j: Jid = ("mercutio", "example.net", "nctYeCzm").try_into()?;
/// assert_eq!(j, "mercutio@example.net/nctYeCzm");
///
/// let j: Result<Jid> = ("mercutio", "example.net", "").try_into();
/// assert!(j.is_err());
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<(&'a str, &'a str, &'a str)> for Jid<'a> {
    type Error = Error;

    fn try_from(parts: (&'a str, &'a str, &'a str)) -> result::Result<Self, Self::Error> {
        Jid::new(Some(parts.0), parts.1, Some(parts.2))
    }
}

/// Creates a full JID from a 3-tuple where the localpart and resourcepart are optional.
///
/// # Errors
///
/// If the first item in the tuple is not a valid localpart, the second item in the tuple fails
/// IDNA processing or is not a valid IPv6 address, or the third item in the tuple is not a valid
/// domainpart, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::{Jid, Result};
/// # fn main() -> std::result::Result<(), xmpp_addr::Error> {
/// let j: Jid = (Some("mercutio"), "example.net", Some("nctYeCzm")).try_into()?;
/// assert_eq!(j, "mercutio@example.net/nctYeCzm");
///
/// let j: Jid = (Some("mercutio"), "example.net", None).try_into()?;
/// assert_eq!(j, "mercutio@example.net");
///
/// let j: Result<Jid> = (Some("mercutio"), "example.net", Some("")).try_into();
/// assert!(j.is_err());
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<(Option<&'a str>, &'a str, Option<&'a str>)> for Jid<'a> {
    type Error = Error;

    fn try_from(
        parts: (Option<&'a str>, &'a str, Option<&'a str>),
    ) -> result::Result<Self, Self::Error> {
        Jid::new(parts.0, parts.1, parts.2)
    }
}

/// Parse a string to create a JID.
///
/// # Errors
///
/// If the entire string or any part of the JID is empty or not valid, or the domainpart fails IDNA
/// processing or is not a valid IPv6 address, this function returns an [error variant].
///
/// [error variant]: ./enum.Error.html
///
/// # Examples
///
#[cfg_attr(not(feature = "try_from"), doc = " ```rust,ignore")]
#[cfg_attr(feature = "try_from", doc = " ```rust")]
/// #![feature(try_from)]
/// # use std::convert::TryInto;
/// # use xmpp_addr::Jid;
/// # fn main() -> Result<(), xmpp_addr::Error> {
/// let j: Jid = "example.net/rp".try_into()?;
/// assert_eq!(j, "example.net/rp");
/// #     Ok(())
/// # }
/// ```
#[cfg(feature = "try_from")]
impl<'a> convert::TryFrom<&'a str> for Jid<'a> {
    type Error = Error;

    fn try_from(s: &'a str) -> result::Result<Self, Self::Error> {
        Jid::from_str(s)
    }
}

/// Creates a JID from an IPv4 address.
impl<'a> convert::From<net::Ipv4Addr> for Jid<'a> {
    fn from(addr: net::Ipv4Addr) -> Jid<'a> {
        Jid {
            local: None,
            domain: format!("{}", addr).into(),
            resource: None,
        }
    }
}

/// Creates a JID from an IPv6 address.
impl<'a> convert::From<net::Ipv6Addr> for Jid<'a> {
    fn from(addr: net::Ipv6Addr) -> Jid<'a> {
        Jid {
            local: None,
            domain: format!("[{}]", addr).into(),
            resource: None,
        }
    }
}

/// Creates a JID from an IP address.
impl<'a> convert::From<net::IpAddr> for Jid<'a> {
    fn from(addr: net::IpAddr) -> Jid<'a> {
        match addr {
            net::IpAddr::V6(v6) => v6.into(),
            net::IpAddr::V4(v4) => v4.into(),
        }
    }
}

/// Allows JIDs to be compared with strings.
///
/// **This may be expensive**. The string is first split using [`Jid::split`] and each part is
/// compared with its corresponding part in the JID. If this comparison is successful, true is
/// returned and the comparison is cheap. If this does not match, however, the string is then
/// canonicalized (by converting it into a JID) and the parts are compared again; this may require
/// expensive heap allocations. If constructing a JID from the string fails, the comparison always
/// fails (even if the original JID is would match the invalid output). Comparisons involving
/// unsafe JIDs constructed with [`Jid::new_unchecked`] should construct an unsafe JID from the
/// string and manually compare the parts.
///
/// [`Jid::split`]: struct.Jid.html#method.split
/// [`Jid::new_unchecked`]: struct.Jid.html#method.new_unchecked
///
/// # Examples
///
/// ```rust
/// # use xmpp_addr::Jid;
/// # fn main() -> Result<(), xmpp_addr::Error> {
/// let j = Jid::from_str("example.net/rp")?;
/// assert!(j == "example.net/rp");
/// #     Ok(())
/// # }
/// ```
impl cmp::PartialEq<str> for Jid<'_> {
    fn eq(&self, other: &str) -> bool {
        if match Jid::split(other) {
            Err(_) => false,
            Ok(p) => {
                let local_match = match p.0 {
                    None => self.local.is_none(),
                    Some(s) => match self.local {
                        None => false,
                        Some(ref l) => s == l,
                    },
                };
                let res_match = match p.2 {
                    None => self.resource.is_none(),
                    Some(s) => match self.resource {
                        None => false,
                        Some(ref r) => s == r,
                    },
                };
                local_match && p.1 == self.domain && res_match
            }
        } {
            return true;
        }
        match Jid::from_str(other) {
            Ok(j) => j.eq(self),
            Err(_) => false,
        }
    }
}

/// Allows JIDs to be compared with strings.
///
/// **This may be expensive**. The string is first split using [`Jid::split`] and each part is
/// compared with its corresponding part in the JID. If this comparison is successful, true is
/// returned and the comparison is cheap. If this does not match, however, the string is then
/// canonicalized (by converting it into a JID) and the parts are compared again; this may require
/// expensive heap allocations. If constructing a JID from the string fails, the comparison always
/// fails (even if the original JID is would match the invalid output). Comparisons involving
/// unsafe JIDs constructed with [`Jid::new_unchecked`] should construct an unsafe JID from the
/// string and manually compare the parts.
///
/// [`Jid::split`]: struct.Jid.html#method.split
/// [`Jid::new_unchecked`]: struct.Jid.html#method.new_unchecked
///
/// # Examples
///
/// ```rust
/// # use xmpp_addr::Jid;
/// # fn main() -> Result<(), xmpp_addr::Error> {
/// let j = Jid::from_str("example.net/rp")?;
/// assert!("example.net/rp" == j);
/// #     Ok(())
/// # }
/// ```
impl cmp::PartialEq<Jid<'_>> for str {
    fn eq(&self, other: &Jid<'_>) -> bool {
        PartialEq::eq(other, self)
    }
}

// Macro from collections::strings
macro_rules! impl_eq {
    ($lhs:ty, $rhs:ty) => {
        /// Allows JIDs to be compared with strings.
        ///
        /// **This may be expensive**. The string is first split using [`Jid::split`] and each part
        /// is compared with its corresponding part in the JID. If this comparison is successful,
        /// true is returned and the comparison is cheap. If this does not match, however, the
        /// string is then canonicalized (by converting it into a JID) and the parts are compared
        /// again; this may require expensive heap allocations. If constructing a JID from the
        /// string fails, the comparison always fails (even if the original JID is would match the
        /// invalid output). Comparisons involving unsafe JIDs constructed with
        /// [`Jid::new_unchecked`] should construct an unsafe JID from the string and manually
        /// compare the parts.
        ///
        /// [`Jid::split`]: struct.Jid.html#method.split
        /// [`Jid::new_unchecked`]: struct.Jid.html#method.new_unchecked
        impl<'a, 'b> PartialEq<$lhs> for $rhs {
            #[inline]
            fn eq(&self, other: &$lhs) -> bool {
                PartialEq::eq(self, &other[..])
            }
        }

        /// Allows JIDs to be compared with strings.
        ///
        /// **This may be expensive**. The string is first split using [`Jid::split`] and each part
        /// is compared with its corresponding part in the JID. If this comparison is successful,
        /// true is returned and the comparison is cheap. If this does not match, however, the
        /// string is then canonicalized (by converting it into a JID) and the parts are compared
        /// again; this may require expensive heap allocations. If constructing a JID from the
        /// string fails, the comparison always fails (even if the original JID is would match the
        /// invalid output). Comparisons involving unsafe JIDs constructed with
        /// [`Jid::new_unchecked`] should construct an unsafe JID from the string and manually
        /// compare the parts.
        ///
        /// [`Jid::split`]: struct.Jid.html#method.split
        /// [`Jid::new_unchecked`]: struct.Jid.html#method.new_unchecked
        impl<'a, 'b> PartialEq<$rhs> for $lhs {
            #[inline]
            fn eq(&self, other: &$rhs) -> bool {
                PartialEq::eq(&self[..], other)
            }
        }
    };
}

impl_eq! { borrow::Cow<'b, str>, Jid<'a> }
impl_eq! { &'b str, Jid<'a> }
impl_eq! { String, Jid<'a> }