1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
// 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.
fn main() {
test00();
// test01();
test02();
test04();
test05();
test06();
}
fn test00_start(ch: ::core::oldcomm::Chan<int>, message: int, count: int) {
debug!("Starting test00_start");
let mut i: int = 0;
while i < count {
debug!("Sending Message");
::core::oldcomm::send(ch, message + 0);
i = i + 1;
}
debug!("Ending test00_start");
}
fn test00() {
let number_of_tasks: int = 1;
let number_of_messages: int = 4;
debug!("Creating tasks");
let po = ::core::oldcomm::Port();
let ch = ::core::oldcomm::Chan(&po);
let mut i: int = 0;
let mut results = ~[];
while i < number_of_tasks {
i = i + 1;
do task::task().future_result(|+r| {
results.push(move r);
}).spawn |copy i| {
test00_start(ch, i, number_of_messages);
}
}
let mut sum: int = 0;
for results.each |r| {
i = 0;
while i < number_of_messages { sum += ::core::oldcomm::recv(po); i = i + 1; }
}
for results.each |r| { r.recv(); }
debug!("Completed: Final number is: ");
assert (sum ==
number_of_messages *
(number_of_tasks * number_of_tasks + number_of_tasks) /
2);
}
fn test01() {
let p = ::core::oldcomm::Port();
debug!("Reading from a port that is never written to.");
let value: int = ::core::oldcomm::recv(p);
log(debug, value);
}
fn test02() {
let p = ::core::oldcomm::Port();
let c = ::core::oldcomm::Chan(&p);
debug!("Writing to a local task channel.");
::core::oldcomm::send(c, 42);
debug!("Reading from a local task port.");
let value: int = ::core::oldcomm::recv(p);
log(debug, value);
}
fn test04_start() {
debug!("Started task");
let mut i: int = 1024 * 1024;
while i > 0 { i = i - 1; }
debug!("Finished task");
}
fn test04() {
debug!("Spawning lots of tasks.");
let mut i: int = 4;
while i > 0 { i = i - 1; task::spawn(|| test04_start() ); }
debug!("Finishing up.");
}
fn test05_start(ch: ::core::oldcomm::Chan<int>) {
::core::oldcomm::send(ch, 10);
::core::oldcomm::send(ch, 20);
::core::oldcomm::send(ch, 30);
::core::oldcomm::send(ch, 30);
::core::oldcomm::send(ch, 30);
}
fn test05() {
let po = ::core::oldcomm::Port();
let ch = ::core::oldcomm::Chan(&po);
task::spawn(|| test05_start(ch) );
let mut value: int;
value = ::core::oldcomm::recv(po);
value = ::core::oldcomm::recv(po);
value = ::core::oldcomm::recv(po);
log(debug, value);
}
fn test06_start(&&task_number: int) {
debug!("Started task.");
let mut i: int = 0;
while i < 1000000 { i = i + 1; }
debug!("Finished task.");
}
fn test06() {
let number_of_tasks: int = 4;
debug!("Creating tasks");
let mut i: int = 0;
let mut results = ~[];
while i < number_of_tasks {
i = i + 1;
do task::task().future_result(|+r| {
results.push(move r);
}).spawn |copy i| {
test06_start(i);
};
}
for results.each |r| { r.recv(); }
}
|