2023-07-04 21:27:15 +01:00
|
|
|
use std::str::Utf8Error;
|
|
|
|
|
2023-07-11 21:28:42 +01:00
|
|
|
use quick_xml::events::attributes::AttrError;
|
2023-07-04 21:27:15 +01:00
|
|
|
use rsasl::mechname::MechanismNameError;
|
|
|
|
|
2023-10-21 01:28:54 +01:00
|
|
|
use crate::jid::ParseError;
|
2023-07-11 21:28:42 +01:00
|
|
|
|
2023-06-19 19:23:54 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum JabberError {
|
2023-07-04 21:27:15 +01:00
|
|
|
Connection,
|
2023-06-19 19:23:54 +01:00
|
|
|
BadStream,
|
|
|
|
StartTlsUnavailable,
|
|
|
|
TlsNegotiation,
|
2023-07-04 21:27:15 +01:00
|
|
|
Utf8Decode,
|
2023-07-11 21:28:42 +01:00
|
|
|
NoFeatures,
|
|
|
|
UnknownNamespace,
|
2023-08-02 00:56:38 +01:00
|
|
|
UnknownAttribute,
|
|
|
|
NoID,
|
|
|
|
NoType,
|
|
|
|
IDMismatch,
|
|
|
|
BindError,
|
2023-07-11 21:28:42 +01:00
|
|
|
ParseError,
|
2023-07-12 21:11:20 +01:00
|
|
|
UnexpectedEnd,
|
2023-08-02 00:56:38 +01:00
|
|
|
UnexpectedElement,
|
2023-08-05 16:47:52 +01:00
|
|
|
UnexpectedText,
|
2023-07-04 21:27:15 +01:00
|
|
|
XML(quick_xml::Error),
|
|
|
|
SASL(SASLError),
|
2023-07-11 21:28:42 +01:00
|
|
|
JID(ParseError),
|
2023-07-04 21:27:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum SASLError {
|
|
|
|
SASL(rsasl::prelude::SASLError),
|
|
|
|
MechanismName(MechanismNameError),
|
2023-07-12 21:11:20 +01:00
|
|
|
NoChallenge,
|
|
|
|
NoSuccess,
|
2023-07-04 21:27:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<rsasl::prelude::SASLError> for JabberError {
|
|
|
|
fn from(e: rsasl::prelude::SASLError) -> Self {
|
|
|
|
Self::SASL(SASLError::SASL(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<MechanismNameError> for JabberError {
|
2023-07-12 21:11:20 +01:00
|
|
|
fn from(e: MechanismNameError) -> Self {
|
|
|
|
Self::SASL(SASLError::MechanismName(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<SASLError> for JabberError {
|
|
|
|
fn from(e: SASLError) -> Self {
|
|
|
|
Self::SASL(e)
|
2023-07-04 21:27:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Utf8Error> for JabberError {
|
2023-07-11 21:28:42 +01:00
|
|
|
fn from(_e: Utf8Error) -> Self {
|
2023-07-04 21:27:15 +01:00
|
|
|
Self::Utf8Decode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<quick_xml::Error> for JabberError {
|
|
|
|
fn from(e: quick_xml::Error) -> Self {
|
|
|
|
Self::XML(e)
|
|
|
|
}
|
2023-06-19 19:23:54 +01:00
|
|
|
}
|
2023-07-11 21:28:42 +01:00
|
|
|
|
|
|
|
impl From<AttrError> for JabberError {
|
|
|
|
fn from(e: AttrError) -> Self {
|
|
|
|
Self::XML(e.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ParseError> for JabberError {
|
|
|
|
fn from(e: ParseError) -> Self {
|
|
|
|
Self::JID(e)
|
|
|
|
}
|
|
|
|
}
|