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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
use crate::{
error::Error,
parser,
relay::{self, RelayMessage},
Cancel, Mailbox, NodeMessage,
};
use ockam_core::{Address, AddressSet, Message, Result, Route, TransportMessage, Worker};
use std::sync::Arc;
use tokio::{
runtime::Runtime,
sync::mpsc::{channel, Sender},
};
pub struct Context {
address: AddressSet,
msg_addr: Option<Address>,
sender: Sender<NodeMessage>,
rt: Arc<Runtime>,
pub(crate) mailbox: Mailbox,
}
impl Context {
pub(crate) fn new(
rt: Arc<Runtime>,
sender: Sender<NodeMessage>,
address: AddressSet,
mailbox: Mailbox,
) -> Self {
Self {
rt,
sender,
address,
msg_addr: None,
mailbox,
}
}
/// Override the worker address for a specific message address
pub(crate) fn message_address<A: Into<Option<Address>>>(&mut self, a: A) {
self.msg_addr = a.into();
}
/// Return the current context address
///
/// During initialisation and shutdown this will return the
/// primary worker address. During message handling it will
/// return the address the message was addressed to.
pub fn address(&self) -> Address {
self.msg_addr
.clone()
.or(Some(self.address.first().clone()))
.unwrap()
}
/// Start a new worker handle at [`Address`](ockam_core::Address)
pub async fn start_worker<NM, NW, S>(&self, address: S, worker: NW) -> Result<()>
where
S: Into<AddressSet>,
NM: Message + Send + 'static,
NW: Worker<Context = Context, Message = NM>,
{
let address = address.into();
// Build the mailbox first
let (mb_tx, mb_rx) = channel(32);
let mb = Mailbox::new(mb_rx, mb_tx.clone());
// Pass it to the context
let ctx = Context::new(self.rt.clone(), self.sender.clone(), address.clone(), mb);
// Then initialise the worker message relay
let sender = relay::build::<NW, NM>(self.rt.as_ref(), worker, ctx);
let msg = NodeMessage::start_worker(address, sender);
let _result: Result<()> = match self.sender.send(msg).await {
Ok(()) => Ok(()),
Err(_e) => Err(Error::FailedStartWorker.into()),
};
Ok(())
}
/// Signal to the local application runner to shut down
pub async fn stop(&self) -> Result<()> {
let tx = self.sender.clone();
info!("Shutting down all workers");
match tx.send(NodeMessage::StopNode).await {
Ok(()) => Ok(()),
Err(_e) => Err(Error::FailedStopNode.into()),
}
}
/// Shut down a worker by its primary address
pub async fn stop_worker<A: Into<Address>>(&self, addr: A) -> Result<()> {
let addr = addr.into();
debug!("Shutting down worker {}", addr);
// Send the stop request
let (req, mut rx) = NodeMessage::stop_worker(addr);
self.sender.send(req).await.map_err(|e| Error::from(e))?;
// Then check that the worker was properly shut down
Ok(rx
.recv()
.await
.ok_or(Error::InternalIOFailure)?
.map(|_| ())?)
}
/// Send a message via a fully qualified route
///
/// Routes can be constructed from a set of [`Address`]es, or via
/// the [`RouteBuilder`] type. Routes can contain middleware
/// router addresses, which will re-address messages that need to
/// be handled by specific domain workers.
///
/// [`Address`]: ockam_core::Address
/// [`RouteBuilder`]: ockem_core::RouteBuilder
pub async fn send_message<R, M>(&self, route: R, msg: M) -> Result<()>
where
R: Into<Route>,
M: Message + Send + 'static,
{
let route = route.into();
let (reply_tx, mut reply_rx) = channel(1);
let next = route.next().unwrap(); // TODO: communicate bad routes
let req = NodeMessage::SenderReq(next.clone(), reply_tx);
// First resolve the next hop in the route
self.sender.send(req).await.map_err(|e| Error::from(e))?;
let (addr, sender, needs_wrapping) = reply_rx
.recv()
.await
.ok_or(Error::InternalIOFailure)??
.take_sender()?;
// Pack the payload into a TransportMessage
let payload = msg.encode().unwrap();
let mut data = TransportMessage::v1(route.clone(), payload);
data.return_.modify().append(self.address());
// Pack transport message into relay message wrapper
let msg = if needs_wrapping {
RelayMessage::pre_router(addr, data, route)
} else {
RelayMessage::direct(addr, data, route)
};
// Send the packed user message with associated route
sender.send(msg).await.map_err(|e| Error::from(e))?;
Ok(())
}
/// Forward a transport message to its next routing destination
///
/// Similar to [`Context::send_message`], but taking a
/// [`TransportMessage`], which contains the full destination
/// route, and calculated return route for this hop.
///
/// **Note:** you most likely want to use
/// [`Context::send_message`] instead, unless you are writing an
/// external router implementation for ockam node.
///
/// [`Context::send_message`]: crate::Context::send_message
/// [`TransportMessage`]: ockam_core::TransportMessage
pub async fn forward_message(&self, data: TransportMessage) -> Result<()> {
// Resolve the sender for the next hop in the messages route
let (reply_tx, mut reply_rx) = channel(1);
let next = data.onward.next().unwrap(); // TODO: communicate bad routes
let req = NodeMessage::SenderReq(next.clone(), reply_tx);
// First resolve the next hop in the route
self.sender.send(req).await.map_err(|e| Error::from(e))?;
let (addr, sender, _) = reply_rx
.recv()
.await
.ok_or(Error::InternalIOFailure)??
.take_sender()?;
// Pack the transport message into a relay message
let onward = data.onward.clone();
let msg = RelayMessage::direct(addr, data, onward);
sender.send(msg).await.map_err(|e| Error::from(e))?;
Ok(())
}
/// Block the current worker to wait for a typed message
///
/// Will return `None` if the corresponding worker has been
/// stopped, or the underlying Node has shut down.
pub async fn receive<'ctx, M: Message>(&'ctx mut self) -> Result<Cancel<'ctx, M>> {
let (msg, data, addr) = self.next_from_mailbox().await?;
Ok(Cancel::new(msg, data, addr, self))
}
/// Block the current worker to wait for a message satisfying a conditional
///
/// Will return `Err` if the corresponding worker has been
/// stopped, or the underlying node has shut down.
///
/// Internally this function calls `receive` and `.cancel()` in a
/// loop until a matching message is found.
pub async fn receive_match<'ctx, M, F>(&'ctx mut self, check: F) -> Result<Cancel<'ctx, M>>
where
M: Message,
F: Fn(&M) -> bool,
{
while let Ok((m, data, addr)) = self.next_from_mailbox().await {
if check(&m) {
// Return a Cancel if the check succeeded
return Ok(Cancel::new(m, data, addr, self));
} else {
// Requeue the message into the mailbox if it didn't
let onward = data.onward.clone();
self.mailbox
.requeue(RelayMessage::direct(addr, data, onward))
.await;
}
}
Err(Error::FailedLoadData.into())
}
/// Return a list of all available worker addresses on a node
pub async fn list_workers(&self) -> Result<Vec<Address>> {
let (msg, mut reply_rx) = NodeMessage::list_workers();
self.sender.send(msg).await.map_err(|e| Error::from(e))?;
Ok(reply_rx
.recv()
.await
.ok_or(Error::InternalIOFailure)??
.take_workers()?)
}
/// Register a router for a specific address type
pub async fn register<A: Into<Address>>(&self, type_: u8, addr: A) -> Result<()> {
let addr = addr.into();
let (tx, mut rx) = channel(1);
self.sender
.send(NodeMessage::Router(type_, addr, tx))
.await
.map_err(|_| Error::InternalIOFailure)?;
Ok(rx.recv().await.ok_or(Error::InternalIOFailure)??.is_ok()?)
}
/// A convenience function to get a data 3-tuple from the mailbox
///
/// The reason this function doesn't construct a `Cancel<_, M>` is
/// to avoid the lifetime collision between the mutation on `self` and the ref to `Context`
/// passed to `Cancel::new(..)`
///
/// This function will block and re-queue messages into the
/// mailbox until it can receive the correct message payload.
///
/// WARNING: this will temporarily create a busyloop, this
/// mechanism should be replaced with a waker system that lets the
/// mailbox work not yield another message until the relay worker
/// has woken it.
async fn next_from_mailbox<M: Message>(&mut self) -> Result<(M, TransportMessage, Address)> {
loop {
let msg = self
.mailbox
.next()
.await
.ok_or_else(|| Error::FailedLoadData)?;
let (addr, data) = msg.transport();
// FIXME: make message parsing idempotent to avoid cloning
match parser::message(data.payload.clone()).ok() {
Some(msg) => return Ok((msg, data, addr)),
None => {
let onward = data.onward.clone();
self.mailbox
.requeue(RelayMessage::direct(addr, data, onward))
.await;
}
}
}
}
}