]> git.lizzy.rs Git - rust.git/blob - src/test/bench/msgsend-pipes-shared.rs
complete openbsd support for `std::env`
[rust.git] / src / test / bench / msgsend-pipes-shared.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // A port of the simplistic benchmark from
12 //
13 //    http://github.com/PaulKeeble/ScalaVErlangAgents
14 //
15 // I *think* it's the same, more or less.
16
17 // This version uses pipes with a shared send endpoint. It should have
18 // different scalability characteristics compared to the select
19 // version.
20
21 use std::sync::mpsc::{channel, Sender, Receiver};
22 use std::os;
23 use std::thread::Thread;
24 use std::time::Duration;
25
26 fn move_out<T>(_x: T) {}
27
28 enum request {
29     get_count,
30     bytes(uint),
31     stop
32 }
33
34 fn server(requests: &Receiver<request>, responses: &Sender<uint>) {
35     let mut count = 0u;
36     let mut done = false;
37     while !done {
38         match requests.recv() {
39           Ok(request::get_count) => { responses.send(count.clone()).unwrap(); }
40           Ok(request::bytes(b)) => {
41             //println!("server: received {} bytes", b);
42             count += b;
43           }
44           Err(..) => { done = true; }
45           _ => { }
46         }
47     }
48     responses.send(count).unwrap();
49     //println!("server exiting");
50 }
51
52 fn run(args: &[String]) {
53     let (to_parent, from_child) = channel();
54     let (to_child, from_parent) = channel();
55
56     let size = args[1].parse::<uint>().unwrap();
57     let workers = args[2].parse::<uint>().unwrap();
58     let num_bytes = 100;
59     let mut result = None;
60     let mut p = Some((to_child, to_parent, from_parent));
61     let dur = Duration::span(|| {
62         let (to_child, to_parent, from_parent) = p.take().unwrap();
63         let mut worker_results = Vec::new();
64         for _ in 0u..workers {
65             let to_child = to_child.clone();
66             worker_results.push(Thread::scoped(move|| {
67                 for _ in 0u..size / workers {
68                     //println!("worker {}: sending {} bytes", i, num_bytes);
69                     to_child.send(request::bytes(num_bytes)).unwrap();
70                 }
71                 //println!("worker {} exiting", i);
72             }));
73         }
74         Thread::spawn(move|| {
75             server(&from_parent, &to_parent);
76         });
77
78         for r in worker_results {
79             let _ = r.join();
80         }
81
82         //println!("sending stop message");
83         to_child.send(request::stop).unwrap();
84         move_out(to_child);
85         result = Some(from_child.recv().unwrap());
86     });
87     let result = result.unwrap();
88     print!("Count is {}\n", result);
89     print!("Test took {} ms\n", dur.num_milliseconds());
90     let thruput = ((size / workers * workers) as f64) / (dur.num_milliseconds() as f64);
91     print!("Throughput={} per sec\n", thruput / 1000.0);
92     assert_eq!(result, num_bytes * size);
93 }
94
95 fn main() {
96     let args = os::args();
97     let args = if os::getenv("RUST_BENCH").is_some() {
98         vec!("".to_string(), "1000000".to_string(), "10000".to_string())
99     } else if args.len() <= 1u {
100         vec!("".to_string(), "10000".to_string(), "4".to_string())
101     } else {
102         args.into_iter().map(|x| x.to_string()).collect()
103     };
104
105     println!("{:?}", args);
106     run(args.as_slice());
107 }