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
use futures::sync::oneshot::Sender;
use std::marker::PhantomData;
use actor::{Actor, AsyncContext};
use context::Context;
use handler::{Handler, Message, MessageResponse};
pub trait ToEnvelope<A, M: Message>
where
A: Actor + Handler<M>,
A::Context: ToEnvelope<A, M>,
{
fn pack(msg: M, tx: Option<Sender<M::Result>>) -> Envelope<A>;
}
pub trait EnvelopeProxy {
type Actor: Actor;
fn handle(
&mut self, act: &mut Self::Actor, ctx: &mut <Self::Actor as Actor>::Context,
);
}
impl<A, M> ToEnvelope<A, M> for Context<A>
where
A: Actor<Context = Context<A>> + Handler<M>,
M: Message + Send + 'static,
M::Result: Send,
{
fn pack(msg: M, tx: Option<Sender<M::Result>>) -> Envelope<A> {
Envelope::new(msg, tx)
}
}
pub struct Envelope<A: Actor>(Box<EnvelopeProxy<Actor = A> + Send>);
impl<A: Actor> Envelope<A> {
pub fn new<M>(msg: M, tx: Option<Sender<M::Result>>) -> Envelope<A>
where
A: Handler<M>,
A::Context: AsyncContext<A>,
M: Message + Send + 'static,
M::Result: Send,
{
Envelope(Box::new(SyncEnvelopeProxy {
tx,
msg: Some(msg),
act: PhantomData,
}))
}
pub fn with_proxy(proxy: Box<EnvelopeProxy<Actor = A> + Send>) -> Envelope<A> {
Envelope(proxy)
}
}
impl<A: Actor> EnvelopeProxy for Envelope<A> {
type Actor = A;
fn handle(
&mut self, act: &mut Self::Actor, ctx: &mut <Self::Actor as Actor>::Context,
) {
self.0.handle(act, ctx)
}
}
pub struct SyncEnvelopeProxy<A, M>
where
M: Message + Send,
M::Result: Send,
{
act: PhantomData<A>,
msg: Option<M>,
tx: Option<Sender<M::Result>>,
}
unsafe impl<A, M> Send for SyncEnvelopeProxy<A, M>
where
M: Message + Send,
M::Result: Send,
{}
impl<A, M> EnvelopeProxy for SyncEnvelopeProxy<A, M>
where
M: Message + Send + 'static,
M::Result: Send,
A: Actor + Handler<M>,
A::Context: AsyncContext<A>,
{
type Actor = A;
fn handle(
&mut self, act: &mut Self::Actor, ctx: &mut <Self::Actor as Actor>::Context,
) {
let tx = self.tx.take();
if tx.is_some() && tx.as_ref().unwrap().is_canceled() {
return;
}
if let Some(msg) = self.msg.take() {
let fut = <Self::Actor as Handler<M>>::handle(act, msg, ctx);
fut.handle(ctx, tx)
}
}
}