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
use crate::address::MessageResponseFuture;
use crate::{
Actor, Address, AddressExt, Context, Disconnected, Handler, Message, SyncHandler, WeakAddress,
};
use futures::channel::oneshot::{self, Receiver, Sender};
use futures::{future, Future, FutureExt, Sink};
use std::marker::PhantomData;
use std::pin::Pin;
type Fut<'a> = Pin<Box<dyn Future<Output = ()> + Send + 'a>>;
pub(crate) trait MessageEnvelope: Send {
type Actor: Actor;
fn handle<'a>(
self: Box<Self>,
act: &'a mut Self::Actor,
ctx: &'a mut Context<Self::Actor>,
) -> Fut<'a>;
}
pub(crate) struct ReturningEnvelope<A: Actor + Send, M: Message> {
message: M,
result_sender: Sender<M::Result>,
phantom: PhantomData<A>,
}
impl<A: Actor + Send, M: Message> ReturningEnvelope<A, M> {
pub(crate) fn new(message: M) -> (Self, Receiver<M::Result>) {
let (tx, rx) = oneshot::channel();
let envelope = ReturningEnvelope {
message,
result_sender: tx,
phantom: PhantomData,
};
(envelope, rx)
}
}
impl<M, A> MessageEnvelope for ReturningEnvelope<A, M>
where
A: Handler<M> + Send,
for<'a> A::Responder<'a>: Future<Output = M::Result>,
M: Message,
{
type Actor = A;
default fn handle<'a>(
self: Box<Self>,
act: &'a mut Self::Actor,
ctx: &'a mut Context<Self::Actor>,
) -> Fut<'a> {
let Self {
message,
result_sender,
..
} = *self;
Box::pin(act.handle(message, ctx).map(move |r| {
let _ = result_sender.send(r);
}))
}
}
impl<A, M> MessageEnvelope for ReturningEnvelope<A, M>
where
A: Handler<M> + SyncHandler<M> + Send,
M: Message,
M::Result: Send,
{
fn handle<'a>(
self: Box<Self>,
act: &'a mut Self::Actor,
ctx: &'a mut Context<Self::Actor>,
) -> Fut<'a> {
let message_result = SyncHandler::handle(act, self.message, ctx);
let _ = self.result_sender.send(message_result);
Box::pin(future::ready(()))
}
}
pub(crate) struct NonReturningEnvelope<A: Actor, M: Message> {
message: M,
phantom: PhantomData<A>,
}
impl<A: Actor, M: Message> NonReturningEnvelope<A, M> {
pub(crate) fn new(message: M) -> Self {
NonReturningEnvelope {
message,
phantom: PhantomData,
}
}
}
impl<A, M> MessageEnvelope for NonReturningEnvelope<A, M>
where
A: Handler<M> + Send,
for<'a> A::Responder<'a>: Future<Output = M::Result>,
M: Message,
{
type Actor = A;
default fn handle<'a>(
self: Box<Self>,
act: &'a mut Self::Actor,
ctx: &'a mut Context<Self::Actor>,
) -> Fut<'a> {
Box::pin(act.handle(self.message, ctx).map(|_| ()))
}
}
impl<A, M> MessageEnvelope for NonReturningEnvelope<A, M>
where
A: Handler<M> + SyncHandler<M> + Send,
M: Message,
{
fn handle<'a>(
self: Box<Self>,
act: &'a mut Self::Actor,
ctx: &'a mut Context<Self::Actor>,
) -> Fut<'a> {
SyncHandler::handle(act, self.message, ctx);
Box::pin(future::ready(()))
}
}
pub(crate) trait AddressEnvelope<M: Message>: Sink<M, Error = Disconnected> + Unpin {
fn is_connected(&self) -> bool;
fn do_send(&self, message: M) -> Result<(), Disconnected>;
fn send(&self, message: M) -> MessageResponseFuture<M>;
fn downgrade(&self) -> Box<dyn AddressEnvelope<M>>;
}
impl<A, M> AddressEnvelope<M> for Address<A>
where
A: Handler<M> + Send,
M: Message,
{
fn is_connected(&self) -> bool {
AddressExt::is_connected(self)
}
fn do_send(&self, message: M) -> Result<(), Disconnected> {
AddressExt::do_send(self, message)
}
fn send(&self, message: M) -> MessageResponseFuture<M> {
AddressExt::send(self, message)
}
fn downgrade(&self) -> Box<dyn AddressEnvelope<M>> {
Box::new(Address::downgrade(self))
}
}
impl<A, M> AddressEnvelope<M> for WeakAddress<A>
where
A: Handler<M> + Send,
M: Message,
{
fn is_connected(&self) -> bool {
AddressExt::is_connected(self)
}
fn do_send(&self, message: M) -> Result<(), Disconnected> {
AddressExt::do_send(self, message)
}
fn send(&self, message: M) -> MessageResponseFuture<M> {
AddressExt::send(self, message)
}
fn downgrade(&self) -> Box<dyn AddressEnvelope<M>> {
unimplemented!()
}
}