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