2011-07-12 16:19:38 -05:00
|
|
|
/**
|
|
|
|
A somewhat reduced test case to expose some Valgrind issues.
|
|
|
|
|
|
|
|
This originally came from the word-count benchmark.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use std;
|
|
|
|
|
2012-01-31 19:05:20 -06:00
|
|
|
import option = option;
|
2011-12-13 18:25:51 -06:00
|
|
|
import option::some;
|
|
|
|
import option::none;
|
|
|
|
import str;
|
|
|
|
import vec;
|
2011-07-12 16:19:38 -05:00
|
|
|
import std::map;
|
2012-03-07 18:48:57 -06:00
|
|
|
import std::map::hashmap;
|
2011-12-13 18:25:51 -06:00
|
|
|
import task;
|
|
|
|
import comm::chan;
|
|
|
|
import comm::port;
|
|
|
|
import comm::send;
|
|
|
|
import comm::recv;
|
|
|
|
import comm;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn map(filename: str, emit: map_reduce::putter) { emit(filename, "1"); }
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
mod map_reduce {
|
|
|
|
export putter;
|
|
|
|
export mapper;
|
|
|
|
export map_reduce;
|
|
|
|
|
2011-10-18 17:07:40 -05:00
|
|
|
type putter = fn@(str, str);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2012-01-11 11:58:05 -06:00
|
|
|
type mapper = native fn(str, putter);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2012-01-19 20:31:08 -06:00
|
|
|
enum ctrl_proto { find_reducer([u8], chan<int>), mapper_done, }
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn start_mappers(ctrl: chan<ctrl_proto>, inputs: [str]) {
|
2012-01-04 23:14:53 -06:00
|
|
|
for i: str in inputs {
|
|
|
|
task::spawn {|| map_task(ctrl, i); };
|
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2012-01-04 23:14:53 -06:00
|
|
|
fn map_task(ctrl: chan<ctrl_proto>, input: str) {
|
2011-07-27 07:19:39 -05:00
|
|
|
let intermediates = map::new_str_hash();
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn emit(im: map::hashmap<str, int>, ctrl: chan<ctrl_proto>, key: str,
|
|
|
|
val: str) {
|
2011-07-27 07:19:39 -05:00
|
|
|
let c;
|
2011-08-31 17:23:34 -05:00
|
|
|
alt im.find(key) {
|
2011-07-27 07:19:39 -05:00
|
|
|
some(_c) { c = _c }
|
2012-01-19 00:37:22 -06:00
|
|
|
none {
|
2011-08-25 13:20:43 -05:00
|
|
|
let p = port();
|
2011-12-22 16:42:52 -06:00
|
|
|
#error("sending find_reducer");
|
2011-09-01 19:27:58 -05:00
|
|
|
send(ctrl, find_reducer(str::bytes(key), chan(p)));
|
2011-12-22 16:42:52 -06:00
|
|
|
#error("receiving");
|
2011-08-25 13:20:43 -05:00
|
|
|
c = recv(p);
|
2011-12-22 19:53:53 -06:00
|
|
|
log(error, c);
|
2011-08-31 17:23:34 -05:00
|
|
|
im.insert(key, c);
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-07 08:37:08 -06:00
|
|
|
map(input, emit(intermediates, ctrl, _, _));
|
2011-08-13 17:20:11 -05:00
|
|
|
send(ctrl, mapper_done);
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn map_reduce(inputs: [str]) {
|
2011-08-25 13:20:43 -05:00
|
|
|
let ctrl = port();
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
// This task becomes the master control task. It spawns others
|
|
|
|
// to do the rest.
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
let reducers: map::hashmap<str, int>;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
reducers = map::new_str_hash();
|
|
|
|
|
2011-08-25 13:20:43 -05:00
|
|
|
start_mappers(chan(ctrl), inputs);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-08-15 18:38:23 -05:00
|
|
|
let num_mappers = vec::len(inputs) as int;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
while num_mappers > 0 {
|
2011-08-25 13:20:43 -05:00
|
|
|
alt recv(ctrl) {
|
2012-01-19 00:37:22 -06:00
|
|
|
mapper_done { num_mappers -= 1; }
|
2011-07-27 07:19:39 -05:00
|
|
|
find_reducer(k, cc) {
|
|
|
|
let c;
|
2012-01-25 02:53:17 -06:00
|
|
|
alt reducers.find(str::from_bytes(k)) {
|
2011-08-13 17:20:11 -05:00
|
|
|
some(_c) { c = _c; }
|
2012-01-19 00:37:22 -06:00
|
|
|
none { c = 0; }
|
2011-08-13 17:20:11 -05:00
|
|
|
}
|
|
|
|
send(cc, c);
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-23 15:01:05 -05:00
|
|
|
fn main() {
|
2011-09-02 17:34:58 -05:00
|
|
|
map_reduce::map_reduce(["../src/test/run-pass/hashmap-memory.rs"]);
|
2011-08-15 23:54:52 -05:00
|
|
|
}
|