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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
use std::io;
use ntex::util::ByteString;
use crate::{error, v5::codec};
pub use crate::v5::control::{Closed, ControlResult, Disconnect, Error, ProtocolError};
#[derive(Debug)]
pub enum ControlMessage<E> {
Publish(Publish),
Disconnect(Disconnect),
Error(Error<E>),
ProtocolError(ProtocolError),
Closed(Closed),
PeerGone(PeerGone),
}
impl<E> ControlMessage<E> {
pub(super) fn publish(pkt: codec::Publish) -> Self {
ControlMessage::Publish(Publish(pkt))
}
pub(super) fn dis(pkt: codec::Disconnect) -> Self {
ControlMessage::Disconnect(Disconnect(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, pkt: codec::Disconnect) -> ControlResult {
ControlResult { packet: Some(codec::Packet::Disconnect(pkt)), disconnect: true }
}
}
#[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_qos0(self) -> ControlResult {
ControlResult { packet: None, disconnect: false }
}
pub fn ack(self, reason_code: codec::PublishAckReason) -> ControlResult {
ControlResult {
packet: self.0.packet_id.map(|packet_id| {
codec::Packet::PublishAck(codec::PublishAck {
packet_id,
reason_code,
properties: codec::UserProperties::new(),
reason_string: None,
})
}),
disconnect: false,
}
}
pub fn ack_with(
self,
reason_code: codec::PublishAckReason,
properties: codec::UserProperties,
reason_string: Option<ByteString>,
) -> ControlResult {
ControlResult {
packet: self.0.packet_id.map(|packet_id| {
codec::Packet::PublishAck(codec::PublishAck {
packet_id,
reason_code,
properties,
reason_string,
})
}),
disconnect: false,
}
}
}
#[derive(Debug)]
pub struct PeerGone(Option<io::Error>);
impl PeerGone {
pub fn error(&self) -> Option<&io::Error> {
self.0.as_ref()
}
pub fn ack(self) -> ControlResult {
ControlResult { packet: None, disconnect: true }
}
}