2012-12-10 17:32:48 -08:00
|
|
|
// 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.
|
|
|
|
|
2012-09-19 13:59:44 -07:00
|
|
|
// xfail-fast
|
2012-09-18 15:52:21 -07:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2012-09-11 17:46:20 -07:00
|
|
|
extern mod std;
|
2012-09-05 12:32:05 -07:00
|
|
|
use pipes::Chan;
|
|
|
|
use pipes::send;
|
|
|
|
use pipes::recv;
|
2011-07-12 15:27:17 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() { debug!("===== WITHOUT THREADS ====="); test00(); }
|
2010-07-19 14:05:18 -07:00
|
|
|
|
2012-08-28 11:11:15 -07:00
|
|
|
fn test00_start(ch: Chan<int>, message: int, count: int) {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Starting test00_start");
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut i: int = 0;
|
2011-08-10 14:38:49 -07:00
|
|
|
while i < count {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Sending Message");
|
2012-07-25 14:05:06 -07:00
|
|
|
ch.send(message + 0);
|
2011-08-10 14:38:49 -07:00
|
|
|
i = i + 1;
|
|
|
|
}
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Ending test00_start");
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
|
|
|
|
2011-07-12 15:27:17 -07:00
|
|
|
fn test00() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let number_of_tasks: int = 16;
|
|
|
|
let number_of_messages: int = 4;
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Creating tasks");
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-08-16 17:50:21 -07:00
|
|
|
let po = pipes::PortSet();
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut i: int = 0;
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2010-07-19 14:05:18 -07:00
|
|
|
// Create and spawn tasks...
|
2012-06-29 16:26:56 -07:00
|
|
|
let mut results = ~[];
|
2011-07-27 14:19:39 +02:00
|
|
|
while i < number_of_tasks {
|
2012-09-19 16:55:01 -07:00
|
|
|
let ch = po.chan();
|
2013-01-10 10:59:58 -08:00
|
|
|
task::task().future_result(|+r| {
|
2013-02-15 02:44:18 -08:00
|
|
|
results.push(r);
|
2013-01-10 10:59:58 -08:00
|
|
|
}).spawn({
|
|
|
|
let i = i;
|
2013-02-15 02:44:18 -08:00
|
|
|
|| test00_start(ch, i, number_of_messages)
|
2013-01-10 10:59:58 -08:00
|
|
|
});
|
2010-08-09 06:53:37 -07:00
|
|
|
i = i + 1;
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2010-07-19 14:05:18 -07:00
|
|
|
// Read from spawned tasks...
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut sum = 0;
|
2012-06-30 16:19:07 -07:00
|
|
|
for results.each |r| {
|
2010-07-19 14:05:18 -07:00
|
|
|
i = 0;
|
2011-07-27 14:19:39 +02:00
|
|
|
while i < number_of_messages {
|
2012-07-25 14:05:06 -07:00
|
|
|
let value = po.recv();
|
2010-07-19 14:05:18 -07:00
|
|
|
sum += value;
|
|
|
|
i = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join spawned tasks...
|
2012-10-22 19:01:37 -07:00
|
|
|
for results.each |r| { r.recv(); }
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Completed: Final number is: ");
|
2011-12-22 17:53:53 -08:00
|
|
|
log(error, sum);
|
2011-07-13 15:44:09 -07:00
|
|
|
// assert (sum == (((number_of_tasks * (number_of_tasks - 1)) / 2) *
|
2010-08-09 06:53:37 -07:00
|
|
|
// number_of_messages));
|
2011-05-02 17:47:24 -07:00
|
|
|
assert (sum == 480);
|
2011-08-06 10:07:39 -07:00
|
|
|
}
|