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
use codec::v3::{ConnectReturnCode, PublishPacket, SubscribeAckPacket};
use super::Listener;
use crate::commands::{DispatcherToListenerCmd, ListenerToSessionCmd};
use crate::error::Error;
use crate::session::CachedSession;
use crate::types::SessionId;
impl Listener {
pub(super) async fn handle_dispatcher_cmd(
&mut self,
cmd: DispatcherToListenerCmd,
) -> Result<(), Error> {
match cmd {
DispatcherToListenerCmd::CheckCachedSessionResp(session_id, cached_session) => {
self.on_dispatcher_check_cached_session(session_id, cached_session)
.await
}
DispatcherToListenerCmd::Publish(session_id, packet) => {
self.on_dispatcher_publish(session_id, packet).await
}
DispatcherToListenerCmd::SubscribeAck(session_id, packet) => {
self.on_dispatcher_subscribe_ack(session_id, packet).await
}
}
}
async fn on_dispatcher_check_cached_session(
&mut self,
session_id: SessionId,
cached_session: Option<CachedSession>,
) -> Result<(), Error> {
self.session_send_connect_ack(session_id, ConnectReturnCode::Accepted, cached_session)
.await
}
async fn on_dispatcher_publish(
&mut self,
session_id: SessionId,
packet: PublishPacket,
) -> Result<(), Error> {
if let Some(session_sender) = self.session_senders.get(&session_id) {
let cmd = ListenerToSessionCmd::Publish(packet);
session_sender.send(cmd).await.map_err(Into::into)
} else {
Err(Error::session_error(session_id))
}
}
async fn on_dispatcher_subscribe_ack(
&mut self,
session_id: SessionId,
packet: SubscribeAckPacket,
) -> Result<(), Error> {
self.session_send_publish_ack(session_id, packet).await
}
}