rust/src/test/run-pass/task-comm-3.rs

63 lines
1.4 KiB
Rust
Raw Normal View History

use std;
import task;
2012-07-25 16:05:06 -05:00
import pipes;
import pipes::chan;
import pipes::send;
import pipes::recv;
fn main() { debug!{"===== WITHOUT THREADS ====="}; test00(); }
2012-01-04 23:14:53 -06:00
fn test00_start(ch: chan<int>, message: int, count: int) {
debug!{"Starting test00_start"};
let mut i: int = 0;
while i < count {
debug!{"Sending Message"};
2012-07-25 16:05:06 -05:00
ch.send(message + 0);
i = i + 1;
}
debug!{"Ending test00_start"};
}
fn test00() {
2011-07-27 07:19:39 -05:00
let number_of_tasks: int = 16;
let number_of_messages: int = 4;
debug!{"Creating tasks"};
2012-07-25 16:05:06 -05:00
let po = pipes::port_set();
let mut i: int = 0;
// Create and spawn tasks...
let mut results = ~[];
2011-07-27 07:19:39 -05:00
while i < number_of_tasks {
2012-07-25 16:05:06 -05:00
let ch = po.chan();
do task::task().future_result(|+r| {
results += ~[r];
}).spawn |copy i| {
2012-01-04 23:14:53 -06:00
test00_start(ch, i, number_of_messages)
2012-02-18 18:34:42 -06:00
}
2010-08-09 08:53:37 -05:00
i = i + 1;
}
// Read from spawned tasks...
let mut sum = 0;
2012-06-30 18:19:07 -05:00
for results.each |r| {
i = 0;
2011-07-27 07:19:39 -05:00
while i < number_of_messages {
2012-07-25 16:05:06 -05:00
let value = po.recv();
sum += value;
i = i + 1;
}
}
// Join spawned tasks...
2012-06-30 18:19:07 -05:00
for results.each |r| { future::get(r); }
debug!{"Completed: Final number is: "};
log(error, sum);
// assert (sum == (((number_of_tasks * (number_of_tasks - 1)) / 2) *
2010-08-09 08:53:37 -05:00
// number_of_messages));
assert (sum == 480);
}