// Copyright (c) 2017, 2018 lumi // Copyright (c) 2017, 2018, 2019 Emmanuel Gil Peyrot // Copyright (c) 2017, 2018, 2019 Maxime “pep” Buquet // Copyright (c) 2017, 2018 Astro // Copyright (c) 2017 Bastien Orivel // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. use core::fmt; /// An error that signifies that a `Jid` cannot be parsed from a string. #[derive(Debug, PartialEq, Eq)] pub enum Error { /// Happens when the node is empty, that is the string starts with a @. NodeEmpty, /// Happens when the resource is empty, that is the string ends with a /. ResourceEmpty, /// Happens when the localpart is longer than 1023 bytes. NodeTooLong, /// Happens when the resource is longer than 1023 bytes. ResourceTooLong, /// Happens when the localpart is invalid according to nodeprep. NodePrep, /// Happens when the domain is invalid according to nameprep. NamePrep, /// Happens when the resource is invalid according to resourceprep. ResourcePrep, /// Happens when there is no resource, that is string contains no /. ResourceMissingInFullJid, /// Happens when parsing a bare JID and there is a resource. ResourceInBareJid, /// Happens when parsing a JID which has two @ before the resource. TooManyAts, /// Happens when the domain is invalid according to idna. Idna, } impl core::error::Error for Error {} impl fmt::Display for Error { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fmt.write_str(match self { Error::NodeEmpty => "nodepart empty despite the presence of a @", Error::ResourceEmpty => "resource empty despite the presence of a /", Error::NodeTooLong => "localpart longer than 1023 bytes", Error::ResourceTooLong => "resource longer than 1023 bytes", Error::NodePrep => "localpart doesn’t pass nodeprep validation", Error::NamePrep => "domain doesn’t pass nameprep validation", Error::ResourcePrep => "resource doesn’t pass resourceprep validation", Error::ResourceMissingInFullJid => "no resource found in this full JID", Error::ResourceInBareJid => "resource found while parsing a bare JID", Error::TooManyAts => "second @ found before parsing the resource", Error::Idna => "domain doesn’t pass idna validation", }) } }