2012-09-11 17:46:20 -07:00
|
|
|
extern mod std;
|
2011-07-12 15:27:17 -07:00
|
|
|
|
2012-09-05 12:32:05 -07:00
|
|
|
use task::task;
|
|
|
|
use comm::Chan;
|
|
|
|
use comm::Port;
|
|
|
|
use comm::send;
|
|
|
|
use comm::recv;
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
fn main() {
|
2011-07-12 15:27:17 -07:00
|
|
|
test00();
|
2010-06-23 21:03:09 -07:00
|
|
|
// test01();
|
2010-08-09 06:53:37 -07:00
|
|
|
test02();
|
|
|
|
test04();
|
|
|
|
test05();
|
2010-07-19 14:05:18 -07:00
|
|
|
test06();
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2012-08-15 14:10:46 -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-19 15:16:48 -07:00
|
|
|
while i < count {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Sending Message");
|
2011-08-19 15:16:48 -07:00
|
|
|
send(ch, message + 0);
|
|
|
|
i = i + 1;
|
|
|
|
}
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Ending test00_start");
|
2010-06-23 21:03:09 -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 = 1;
|
|
|
|
let number_of_messages: int = 4;
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Creating tasks");
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-08-27 14:22:25 -07:00
|
|
|
let po = Port();
|
2012-10-03 14:38:01 -07:00
|
|
|
let ch = Chan(&po);
|
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
|
|
|
|
2012-06-29 16:26:56 -07:00
|
|
|
let mut results = ~[];
|
2011-07-27 14:19:39 +02:00
|
|
|
while i < number_of_tasks {
|
2010-06-23 21:03:09 -07:00
|
|
|
i = i + 1;
|
2012-08-07 14:26:03 -04:00
|
|
|
do task::task().future_result(|+r| {
|
2012-09-18 22:45:24 -07:00
|
|
|
results.push(move r);
|
2012-07-23 19:58:47 -04:00
|
|
|
}).spawn |copy i| {
|
2012-05-07 11:31:57 -07:00
|
|
|
test00_start(ch, i, number_of_messages);
|
|
|
|
}
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut sum: int = 0;
|
2012-06-30 16:19:07 -07:00
|
|
|
for results.each |r| {
|
2010-06-23 21:03:09 -07:00
|
|
|
i = 0;
|
2011-08-25 11:20:43 -07:00
|
|
|
while i < number_of_messages { sum += recv(po); i = i + 1; }
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2012-09-19 16:55:01 -07:00
|
|
|
for results.each |r| { future::get(r); }
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Completed: Final number is: ");
|
2011-07-27 14:19:39 +02:00
|
|
|
assert (sum ==
|
2011-08-19 15:16:48 -07:00
|
|
|
number_of_messages *
|
|
|
|
(number_of_tasks * number_of_tasks + number_of_tasks) /
|
|
|
|
2);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn test01() {
|
2012-08-27 14:22:25 -07:00
|
|
|
let p = Port();
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Reading from a port that is never written to.");
|
2011-08-25 11:20:43 -07:00
|
|
|
let value: int = recv(p);
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, value);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn test02() {
|
2012-08-27 14:22:25 -07:00
|
|
|
let p = Port();
|
2012-10-03 14:38:01 -07:00
|
|
|
let c = Chan(&p);
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Writing to a local task channel.");
|
2011-08-12 18:34:19 -07:00
|
|
|
send(c, 42);
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Reading from a local task port.");
|
2011-08-25 11:20:43 -07:00
|
|
|
let value: int = recv(p);
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, value);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2012-01-04 21:14:53 -08:00
|
|
|
fn test04_start() {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Started task");
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut i: int = 1024 * 1024;
|
2011-07-27 14:19:39 +02:00
|
|
|
while i > 0 { i = i - 1; }
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Finished task");
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test04() {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Spawning lots of tasks.");
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut i: int = 4;
|
2012-06-30 16:19:07 -07:00
|
|
|
while i > 0 { i = i - 1; task::spawn(|| test04_start() ); }
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Finishing up.");
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
|
|
|
|
2012-08-15 14:10:46 -07:00
|
|
|
fn test05_start(ch: Chan<int>) {
|
2011-08-12 18:34:19 -07:00
|
|
|
send(ch, 10);
|
|
|
|
send(ch, 20);
|
|
|
|
send(ch, 30);
|
|
|
|
send(ch, 30);
|
|
|
|
send(ch, 30);
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-04-19 13:35:49 -07:00
|
|
|
fn test05() {
|
2012-08-27 14:22:25 -07:00
|
|
|
let po = comm::Port();
|
2012-10-03 14:38:01 -07:00
|
|
|
let ch = Chan(&po);
|
2012-06-30 16:19:07 -07:00
|
|
|
task::spawn(|| test05_start(ch) );
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut value: int;
|
2011-08-25 11:20:43 -07:00
|
|
|
value = recv(po);
|
|
|
|
value = recv(po);
|
|
|
|
value = recv(po);
|
2011-12-22 17:53:53 -08:00
|
|
|
log(debug, value);
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-11-11 15:50:57 -08:00
|
|
|
fn test06_start(&&task_number: int) {
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Started task.");
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut i: int = 0;
|
2011-09-01 17:33:39 -07:00
|
|
|
while i < 1000000 { i = i + 1; }
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Finished task.");
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2010-07-19 14:05:18 -07:00
|
|
|
fn test06() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let number_of_tasks: int = 4;
|
2012-08-22 17:24:52 -07:00
|
|
|
debug!("Creating tasks");
|
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
|
|
|
|
2012-06-29 16:26:56 -07:00
|
|
|
let mut results = ~[];
|
2011-08-12 15:42:39 -07:00
|
|
|
while i < number_of_tasks {
|
2011-08-19 15:16:48 -07:00
|
|
|
i = i + 1;
|
2012-08-07 14:26:03 -04:00
|
|
|
do task::task().future_result(|+r| {
|
2012-09-18 22:45:24 -07:00
|
|
|
results.push(move r);
|
2012-07-23 19:58:47 -04:00
|
|
|
}).spawn |copy i| {
|
2012-05-07 11:31:57 -07:00
|
|
|
test06_start(i);
|
|
|
|
};
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|
2011-07-13 15:44:09 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2012-09-19 16:55:01 -07:00
|
|
|
for results.each |r| { future::get(r); }
|
2010-07-19 14:05:18 -07:00
|
|
|
}
|
2010-06-23 21:03:09 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|