-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmany-clients.rs
65 lines (57 loc) · 1.41 KB
/
many-clients.rs
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
extern crate session_types;
extern crate rand;
use session_types::*;
use std::sync::mpsc::{channel, Receiver};
use std::thread::spawn;
use rand::random;
type Server = Recv<u8, Choose<(Send<u8, Eps>, Eps)>>;
type Client = <Server as HasDual>::Dual;
fn server_handler(c: Chan<(), Server>) {
let (c, n) = c.recv();
match n.checked_add(42) {
Some(n) => c.sel1().send(n).close(),
None => c.sel2().close(),
}
}
fn server(rx: Receiver<Chan<(), Server>>) {
let mut count = 0;
loop {
match rx.recv() {
Ok(c) => {
spawn(move || server_handler(c));
count += 1;
},
Err(_) => break,
}
}
println!("Handled {} connections", count);
}
fn client_handler(c: Chan<(), Client>) {
let n = random();
match c.send(n).offer() {
B1(c) => {
let (c, n2) = c.recv();
c.close();
println!("{} + 42 = {}", n, n2);
},
B2(c) => {
c.close();
println!("{} + 42 is an overflow :(", n);
}
}
}
fn main() {
let (tx, rx) = channel();
let n: u8 = random();
println!("Spawning {} clients", n);
for _ in 0..n {
let tmp = tx.clone();
spawn(move || {
let (c1, c2) = session_channel();
tmp.send(c1).unwrap();
client_handler(c2);
});
}
drop(tx);
server(rx);
}