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
use std::io;
pub use crate::v3::control::{
Closed, ControlResult, Disconnect, Error, PeerGone, ProtocolError,
};
use crate::v3::{codec, control::ControlResultKind, error};
#[derive(Debug)]
pub enum ControlMessage<E> {
Publish(Publish),
Closed(Closed),
Error(Error<E>),
ProtocolError(ProtocolError),
PeerGone(PeerGone),
}
impl<E> ControlMessage<E> {
pub(super) fn publish(pkt: codec::Publish) -> Self {
ControlMessage::Publish(Publish(pkt))
}
pub(super) fn closed(is_error: bool) -> Self {
ControlMessage::Closed(Closed::new(is_error))
}
pub(super) fn error(err: E) -> Self {
ControlMessage::Error(Error::new(err))
}
pub(super) fn proto_error(err: error::ProtocolError) -> Self {
ControlMessage::ProtocolError(ProtocolError::new(err))
}
pub(super) fn peer_gone(err: Option<io::Error>) -> Self {
ControlMessage::PeerGone(PeerGone(err))
}
pub fn disconnect(&self) -> ControlResult {
ControlResult { result: ControlResultKind::Disconnect }
}
}
#[derive(Debug)]
pub struct Publish(codec::Publish);
impl Publish {
pub fn packet(&self) -> &codec::Publish {
&self.0
}
pub fn packet_mut(&mut self) -> &mut codec::Publish {
&mut self.0
}
pub fn ack(self) -> ControlResult {
if let Some(id) = self.0.packet_id {
ControlResult { result: ControlResultKind::PublishAck(id) }
} else {
ControlResult { result: ControlResultKind::Nothing }
}
}
pub fn into_inner(self) -> (ControlResult, codec::Publish) {
if let Some(id) = self.0.packet_id {
(ControlResult { result: ControlResultKind::PublishAck(id) }, self.0)
} else {
(ControlResult { result: ControlResultKind::Nothing }, self.0)
}
}
}