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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
use crate::{
client::{Mailbox, UntypedClient},
common::{ConnectionId, Destination, Map, UntypedRequest, UntypedResponse},
manager::data::{ManagerChannelId, ManagerResponse},
server::ServerReply,
};
use log::*;
use std::{collections::HashMap, io};
use tokio::{sync::mpsc, task::JoinHandle};
pub struct ManagerConnection {
pub id: ConnectionId,
pub destination: Destination,
pub options: Map,
tx: mpsc::UnboundedSender<Action>,
action_task: JoinHandle<()>,
request_task: JoinHandle<()>,
response_task: JoinHandle<()>,
}
#[derive(Clone)]
pub struct ManagerChannel {
channel_id: ManagerChannelId,
tx: mpsc::UnboundedSender<Action>,
}
impl ManagerChannel {
pub fn id(&self) -> ManagerChannelId {
self.channel_id
}
pub fn send(&self, req: UntypedRequest<'static>) -> io::Result<()> {
let id = self.channel_id;
self.tx.send(Action::Write { id, req }).map_err(|x| {
io::Error::new(
io::ErrorKind::BrokenPipe,
format!("channel {id} send failed: {x}"),
)
})
}
pub fn close(&self) -> io::Result<()> {
let id = self.channel_id;
self.tx.send(Action::Unregister { id }).map_err(|x| {
io::Error::new(
io::ErrorKind::BrokenPipe,
format!("channel {id} close failed: {x}"),
)
})
}
}
impl ManagerConnection {
pub async fn spawn(
spawn: Destination,
options: Map,
client: UntypedClient,
) -> io::Result<Self> {
let connection_id = rand::random();
let (tx, rx) = mpsc::unbounded_channel();
let (request_tx, request_rx) = mpsc::unbounded_channel();
let action_task = tokio::spawn(action_task(connection_id, rx, request_tx));
let response_task = tokio::spawn(response_task(
connection_id,
client.assign_default_mailbox(100).await?,
tx.clone(),
));
let request_task = tokio::spawn(request_task(connection_id, client, request_rx));
Ok(Self {
id: connection_id,
destination: spawn,
options,
tx,
action_task,
request_task,
response_task,
})
}
pub fn open_channel(&self, reply: ServerReply<ManagerResponse>) -> io::Result<ManagerChannel> {
let channel_id = rand::random();
self.tx
.send(Action::Register {
id: channel_id,
reply,
})
.map_err(|x| {
io::Error::new(
io::ErrorKind::BrokenPipe,
format!("open_channel failed: {x}"),
)
})?;
Ok(ManagerChannel {
channel_id,
tx: self.tx.clone(),
})
}
}
impl Drop for ManagerConnection {
fn drop(&mut self) {
self.action_task.abort();
self.request_task.abort();
self.response_task.abort();
}
}
enum Action {
Register {
id: ManagerChannelId,
reply: ServerReply<ManagerResponse>,
},
Unregister {
id: ManagerChannelId,
},
Read {
res: UntypedResponse<'static>,
},
Write {
id: ManagerChannelId,
req: UntypedRequest<'static>,
},
}
async fn request_task(
id: ConnectionId,
mut client: UntypedClient,
mut rx: mpsc::UnboundedReceiver<UntypedRequest<'static>>,
) {
while let Some(req) = rx.recv().await {
if let Err(x) = client.fire(req).await {
error!("[Conn {id}] Failed to send request: {x}");
}
}
}
async fn response_task(
id: ConnectionId,
mut mailbox: Mailbox<UntypedResponse<'static>>,
tx: mpsc::UnboundedSender<Action>,
) {
while let Some(res) = mailbox.next().await {
if let Err(x) = tx.send(Action::Read { res }) {
error!("[Conn {id}] Failed to forward received response: {x}");
}
}
}
async fn action_task(
id: ConnectionId,
mut rx: mpsc::UnboundedReceiver<Action>,
tx: mpsc::UnboundedSender<UntypedRequest<'static>>,
) {
let mut registered = HashMap::new();
while let Some(action) = rx.recv().await {
match action {
Action::Register { id, reply } => {
registered.insert(id, reply);
}
Action::Unregister { id } => {
registered.remove(&id);
}
Action::Read { mut res } => {
let channel_id = match res.origin_id.split_once('_') {
Some((cid_str, oid_str)) => {
if let Ok(cid) = cid_str.parse::<ManagerChannelId>() {
res.set_origin_id(oid_str.to_string());
cid
} else {
continue;
}
}
None => continue,
};
if let Some(reply) = registered.get(&channel_id) {
let response = ManagerResponse::Channel {
id: channel_id,
response: res,
};
if let Err(x) = reply.send(response).await {
error!("[Conn {id}] {x}");
}
}
}
Action::Write { id, mut req } => {
req.set_id(format!("{id}_{}", req.id));
if let Err(x) = tx.send(req) {
error!("[Conn {id}] {x}");
}
}
}
}
}