]> git.lizzy.rs Git - rust.git/blob - src/test/bench/msgsend-pipes-shared.rs
rollup merge of #17355 : gamazeps/issue17210
[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 extern crate time;
22 extern crate debug;
23
24 use std::comm;
25 use std::os;
26 use std::task;
27 use std::uint;
28
29 fn move_out<T>(_x: T) {}
30
31 enum request {
32     get_count,
33     bytes(uint),
34     stop
35 }
36
37 fn server(requests: &Receiver<request>, responses: &Sender<uint>) {
38     let mut count = 0u;
39     let mut done = false;
40     while !done {
41         match requests.recv_opt() {
42           Ok(get_count) => { responses.send(count.clone()); }
43           Ok(bytes(b)) => {
44             //println!("server: received {:?} bytes", b);
45             count += b;
46           }
47           Err(..) => { done = true; }
48           _ => { }
49         }
50     }
51     responses.send(count);
52     //println!("server exiting");
53 }
54
55 fn run(args: &[String]) {
56     let (to_parent, from_child) = channel();
57     let (to_child, from_parent) = channel();
58
59     let size = from_str::<uint>(args[1].as_slice()).unwrap();
60     let workers = from_str::<uint>(args[2].as_slice()).unwrap();
61     let num_bytes = 100;
62     let start = time::precise_time_s();
63     let mut worker_results = Vec::new();
64     for _ in range(0u, workers) {
65         let to_child = to_child.clone();
66         worker_results.push(task::try_future(proc() {
67             for _ in range(0u, size / workers) {
68                 //println!("worker {:?}: sending {:?} bytes", i, num_bytes);
69                 to_child.send(bytes(num_bytes));
70             }
71             //println!("worker {:?} exiting", i);
72         }));
73     }
74     task::spawn(proc() {
75         server(&from_parent, &to_parent);
76     });
77
78     for r in worker_results.into_iter() {
79         r.unwrap();
80     }
81
82     //println!("sending stop message");
83     to_child.send(stop);
84     move_out(to_child);
85     let result = from_child.recv();
86     let end = time::precise_time_s();
87     let elapsed = end - start;
88     print!("Count is {:?}\n", result);
89     print!("Test took {:?} seconds\n", elapsed);
90     let thruput = ((size / workers * workers) as f64) / (elapsed as f64);
91     print!("Throughput={} per sec\n", thruput);
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 }