aboutsummaryrefslogtreecommitdiffstats
path: root/jabber/src/error.rs
blob: 8c27cc95d87bf650f1525117e5aefa2914bbc034 (plain) (blame)
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
use std::str::Utf8Error;

use jid::ParseError;
use rsasl::mechname::MechanismNameError;
use stanza::client::error::Error as ClientError;
use stanza::sasl::Failure;
use stanza::stream::Error as StreamError;
use thiserror::Error;
use tokio::task::JoinError;

#[derive(Error, Debug)]
pub enum Error {
    #[error("connection")]
    Connection,
    #[error("utf8 decode: {0}")]
    Utf8Decode(#[from] Utf8Error),
    #[error("negotiation")]
    Negotiation,
    #[error("tls required")]
    TlsRequired,
    #[error("already connected with tls")]
    AlreadyTls,
    // TODO: specify unsupported feature
    #[error("unsupported feature")]
    Unsupported,
    #[error("jid missing localpart")]
    NoLocalpart,
    #[error("received unexpected element: {0:?}")]
    UnexpectedElement(peanuts::Element),
    #[error("xml error: {0}")]
    XML(#[from] peanuts::Error),
    #[error("sasl error: {0}")]
    SASL(#[from] SASLError),
    #[error("jid error: {0}")]
    JID(#[from] ParseError),
    #[error("client stanza error: {0}")]
    ClientError(#[from] ClientError),
    #[error("stream error: {0}")]
    StreamError(#[from] StreamError),
    #[error("error missing")]
    MissingError,
    #[error("task join error")]
    JoinError(#[from] JoinError),
}

#[derive(Error, Debug)]
pub enum SASLError {
    #[error("sasl error: {0}")]
    SASL(#[from] rsasl::prelude::SASLError),
    #[error("mechanism error: {0}")]
    MechanismName(#[from] MechanismNameError),
    #[error("authentication failure: {0}")]
    Authentication(#[from] Failure),
}