rust/src/test/bench/msgsend-pipes.rs

107 lines
3.0 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// A port of the simplistic benchmark from
//
// http://github.com/PaulKeeble/ScalaVErlangAgents
//
// I *think* it's the same, more or less.
extern mod extra;
use std::comm::{SharedChan, Chan, stream};
use std::io;
use std::os;
use std::task;
use std::uint;
fn move_out<T>(_x: T) {}
enum request {
get_count,
bytes(uint),
stop
}
fn server(requests: &Port<request>, responses: &Chan<uint>) {
2013-07-02 14:47:32 -05:00
let mut count: uint = 0;
let mut done = false;
while !done {
2012-08-06 14:34:08 -05:00
match requests.try_recv() {
2013-07-02 14:47:32 -05:00
Some(get_count) => { responses.send(count.clone()); }
2012-08-20 14:23:37 -05:00
Some(bytes(b)) => {
2013-09-30 01:13:47 -05:00
//error2!("server: received {:?} bytes", b);
count += b;
}
2012-08-20 14:23:37 -05:00
None => { done = true; }
2012-08-03 21:59:04 -05:00
_ => { }
}
}
responses.send(count);
2013-09-30 01:13:47 -05:00
//error2!("server exiting");
}
fn run(args: &[~str]) {
2013-02-02 05:10:12 -06:00
let (from_child, to_parent) = stream();
let (from_parent, to_child) = stream();
let to_child = SharedChan::new(to_child);
let size = from_str::<uint>(args[1]).unwrap();
let workers = from_str::<uint>(args[2]).unwrap();
let num_bytes = 100;
let start = extra::time::precise_time_s();
let mut worker_results = ~[];
for _ in range(0u, workers) {
let to_child = to_child.clone();
2013-05-06 21:29:04 -05:00
let mut builder = task::task();
builder.future_result(|r| worker_results.push(r));
do builder.spawn {
for _ in range(0u, size / workers) {
2013-09-30 01:13:47 -05:00
//error2!("worker {:?}: sending {:?} bytes", i, num_bytes);
to_child.send(bytes(num_bytes));
}
2013-09-30 01:13:47 -05:00
//error2!("worker {:?} exiting", i);
};
}
2013-02-15 04:44:18 -06:00
do task::spawn || {
2013-04-26 16:04:39 -05:00
server(&from_parent, &to_parent);
}
for r in worker_results.iter() {
r.recv();
}
2013-09-30 01:13:47 -05:00
//error2!("sending stop message");
to_child.send(stop);
move_out(to_child);
let result = from_child.recv();
let end = extra::time::precise_time_s();
let elapsed = end - start;
2013-09-30 01:13:47 -05:00
io::stdout().write_str(format!("Count is {:?}\n", result));
io::stdout().write_str(format!("Test took {:?} seconds\n", elapsed));
let thruput = ((size / workers * workers) as float) / (elapsed as float);
2013-09-30 01:13:47 -05:00
io::stdout().write_str(format!("Throughput={} per sec\n", thruput));
assert_eq!(result, num_bytes * size);
}
fn main() {
let args = os::args();
let args = if os::getenv("RUST_BENCH").is_some() {
~[~"", ~"1000000", ~"8"]
} else if args.len() <= 1u {
~[~"", ~"10000", ~"4"]
} else {
2013-07-02 14:47:32 -05:00
args.clone()
};
2013-09-30 01:13:47 -05:00
info2!("{:?}", args);
run(args);
}