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
|
use std::sync::Arc;
use stanza::client::Stanza;
use thiserror::Error;
use tokio::{
sync::{mpsc::error::SendError, oneshot::error::RecvError},
time::error::Elapsed,
};
#[derive(Debug, Error, Clone)]
pub enum ConnectionError {
#[error("connection failed: {0}")]
ConnectionFailed(#[from] luz::Error),
#[error("already connected")]
AlreadyConnected,
#[error("already disconnected")]
AlreadyDisconnected,
#[error("lost connection")]
LostConnection,
// TODO: Display for Content
#[error("disconnected")]
Disconnected,
}
#[derive(Debug, Error, Clone)]
pub enum CommandError<T> {
#[error("actor: {0}")]
Actor(ActorError),
#[error("{0}")]
Error(#[from] T),
}
#[derive(Debug, Error, Clone)]
pub enum WriteError {
#[error("xml: {0}")]
XML(#[from] peanuts::Error),
#[error("lost connection")]
LostConnection,
// TODO: should this be in writeerror or separate?
#[error("actor: {0}")]
Actor(#[from] ActorError),
#[error("disconnected")]
Disconnected,
}
// TODO: separate peanuts read and write error?
// TODO: which crate
#[derive(Debug, Error, Clone)]
pub enum ReadError {
#[error("xml: {0}")]
XML(#[from] peanuts::Error),
#[error("lost connection")]
LostConnection,
}
#[derive(Debug, Error, Clone)]
pub enum ActorError {
#[error("receive timed out")]
Timeout,
#[error("could not send message to actor, channel closed")]
Send,
#[error("could not receive message from actor, channel closed")]
Receive,
}
impl From<Elapsed> for ActorError {
fn from(_e: Elapsed) -> Self {
Self::Timeout
}
}
impl<T> From<SendError<T>> for ActorError {
fn from(_e: SendError<T>) -> Self {
Self::Send
}
}
impl From<RecvError> for ActorError {
fn from(_e: RecvError) -> Self {
Self::Receive
}
}
|