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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
use std;
use std::cell::{Cell, RefCell};
use std::thread;
use futures::sync::oneshot::{channel, Sender};
use futures::{future, Future, IntoFuture};
use tokio::executor::current_thread::spawn;
use tokio::runtime::current_thread::Runtime;
use uuid::Uuid;
use actor::Actor;
use address::{channel, Addr, AddressReceiver};
use context::Context;
use handler::Handler;
use mailbox::DEFAULT_CAPACITY;
use msgs::{Execute, StartActor, StopArbiter};
use registry::Registry;
use system::{RegisterArbiter, System, UnregisterArbiter};
thread_local!(
static ADDR: RefCell<Option<Addr<Arbiter>>> = RefCell::new(None);
static NAME: RefCell<Option<String>> = RefCell::new(None);
static REG: RefCell<Option<Registry>> = RefCell::new(None);
static RUNNING: Cell<bool> = Cell::new(false);
static Q: RefCell<Vec<Box<Future<Item=(), Error=()>>>> = RefCell::new(Vec::new());
);
pub struct Arbiter {
stop: Option<Sender<i32>>,
stop_system_on_panic: bool,
}
impl Actor for Arbiter {
type Context = Context<Self>;
}
impl Drop for Arbiter {
fn drop(&mut self) {
if self.stop_system_on_panic && thread::panicking() {
eprintln!("Panic in Arbiter thread, shutting down system.");
System::current().stop_with_code(1)
}
}
}
impl Arbiter {
pub fn builder() -> Builder {
Builder::new()
}
pub fn new<T: Into<String>>(name: T) -> Addr<Arbiter> {
Arbiter::new_with_builder(Arbiter::builder().name(name))
}
fn new_with_builder(builder: Builder) -> Addr<Arbiter> {
let (tx, rx) = std::sync::mpsc::channel();
let id = Uuid::new_v4();
let name = format!(
"arbiter:{}:{}",
id.hyphenated().to_string(),
builder.name.as_ref().unwrap_or(&"actor".into())
);
let sys = System::current();
let _ = thread::Builder::new().name(name.clone()).spawn(move || {
let mut rt = Runtime::new().unwrap();
let (stop, stop_rx) = channel();
NAME.with(|cell| *cell.borrow_mut() = Some(name));
REG.with(|cell| *cell.borrow_mut() = Some(Registry::new()));
RUNNING.with(|cell| cell.set(true));
System::set_current(sys);
let addr =
rt.block_on(future::lazy(move || {
let addr = Actor::start(Arbiter {
stop: Some(stop),
stop_system_on_panic: builder.stop_system_on_panic,
});
Ok::<_, ()>(addr)
})).unwrap();
ADDR.with(|cell| *cell.borrow_mut() = Some(addr.clone()));
System::current()
.sys()
.do_send(RegisterArbiter(id.simple().to_string(), addr.clone()));
if tx.send(addr).is_err() {
error!("Can not start Arbiter, remote side is dead");
} else {
let _ = match rt.block_on(stop_rx) {
Ok(code) => code,
Err(_) => 1,
};
}
System::current()
.sys()
.do_send(UnregisterArbiter(id.simple().to_string()));
});
rx.recv().unwrap()
}
pub(crate) fn new_system(rx: AddressReceiver<Arbiter>, name: String) {
NAME.with(|cell| *cell.borrow_mut() = Some(name));
REG.with(|cell| *cell.borrow_mut() = Some(Registry::new()));
RUNNING.with(|cell| cell.set(false));
let ctx = Context::with_receiver(rx);
let fut = ctx.into_future(Arbiter {
stop: None,
stop_system_on_panic: true,
});
let addr = fut.address();
Arbiter::spawn(fut);
ADDR.with(|cell| *cell.borrow_mut() = Some(addr.clone()));
}
pub(crate) fn run_system() {
RUNNING.with(|cell| cell.set(true));
Q.with(|cell| {
let mut v = cell.borrow_mut();
for fut in v.drain(..) {
spawn(fut);
}
});
}
pub(crate) fn stop_system() {
RUNNING.with(|cell| cell.set(false));
}
pub fn name() -> String {
NAME.with(|cell| match *cell.borrow() {
Some(ref name) => name.clone(),
None => "Arbiter is not running".into(),
})
}
pub fn current() -> Addr<Arbiter> {
ADDR.with(|cell| match *cell.borrow() {
Some(ref addr) => addr.clone(),
None => panic!("Arbiter is not running"),
})
}
pub fn registry() -> Registry {
REG.with(|cell| match *cell.borrow() {
Some(ref reg) => reg.clone(),
None => panic!("System is not running: {}", Arbiter::name()),
})
}
pub fn spawn<F>(future: F)
where
F: Future<Item = (), Error = ()> + 'static,
{
RUNNING.with(move |cell| {
if cell.get() {
spawn(Box::new(future));
} else {
Q.with(move |cell| cell.borrow_mut().push(Box::new(future)));
}
});
}
pub fn spawn_fn<F, R>(f: F)
where
F: FnOnce() -> R + 'static,
R: IntoFuture<Item = (), Error = ()> + 'static,
{
Arbiter::spawn(future::lazy(f))
}
pub fn start<A, F>(f: F) -> Addr<A>
where
A: Actor<Context = Context<A>>,
F: FnOnce(&mut A::Context) -> A + Send + 'static,
{
Arbiter::builder().start(f)
}
fn start_with_builder<A, F>(builder: Builder, f: F) -> Addr<A>
where
A: Actor<Context = Context<A>>,
F: FnOnce(&mut A::Context) -> A + Send + 'static,
{
let (stx, srx) = channel::channel(DEFAULT_CAPACITY);
let addr = Arbiter::new_with_builder(builder);
addr.do_send::<Execute>(Execute::new(move || {
let mut ctx = Context::with_receiver(srx);
let act = f(&mut ctx);
let fut = ctx.into_future(act);
spawn(fut);
Ok(())
}));
Addr::new(stx)
}
}
impl Handler<StopArbiter> for Arbiter {
type Result = ();
fn handle(&mut self, msg: StopArbiter, _: &mut Context<Self>) {
if let Some(stop) = self.stop.take() {
let _ = stop.send(msg.0);
}
}
}
impl<A> Handler<StartActor<A>> for Arbiter
where
A: Actor<Context = Context<A>>,
{
type Result = Addr<A>;
fn handle(&mut self, msg: StartActor<A>, _: &mut Context<Self>) -> Addr<A> {
msg.call()
}
}
impl<I: Send, E: Send> Handler<Execute<I, E>> for Arbiter {
type Result = Result<I, E>;
fn handle(&mut self, msg: Execute<I, E>, _: &mut Context<Self>) -> Result<I, E> {
msg.exec()
}
}
pub struct Builder {
name: Option<String>,
stop_system_on_panic: bool,
}
impl Builder {
fn new() -> Self {
Builder {
name: None,
stop_system_on_panic: false,
}
}
pub fn name<T: Into<String>>(mut self, name: T) -> Self {
self.name = Some(name.into());
self
}
pub fn stop_system_on_panic(mut self, stop_system_on_panic: bool) -> Self {
self.stop_system_on_panic = stop_system_on_panic;
self
}
pub fn build(self) -> Addr<Arbiter> {
Arbiter::new_with_builder(self)
}
pub fn start<A, F>(self, f: F) -> Addr<A>
where
A: Actor<Context = Context<A>>,
F: FnOnce(&mut A::Context) -> A + Send + 'static,
{
Arbiter::start_with_builder(self, f)
}
}