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