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;
|
|
|
|
|
|
|
|
import option = std::option::t;
|
|
|
|
import std::option::some;
|
|
|
|
import std::option::none;
|
|
|
|
import std::str;
|
2011-08-12 01:43:17 -05:00
|
|
|
import std::ivec;
|
2011-07-12 16:19:38 -05:00
|
|
|
import std::map;
|
2011-08-13 17:20:11 -05:00
|
|
|
import std::task;
|
|
|
|
import std::comm::_chan;
|
|
|
|
import std::comm::_port;
|
|
|
|
import std::comm::send;
|
|
|
|
import std::comm::mk_port;
|
|
|
|
import std::comm;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-07-27 07:19:39 -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-07-27 07:19:39 -05:00
|
|
|
type putter = fn(str, str) ;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type mapper = fn(str, putter) ;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-08-13 17:20:11 -05:00
|
|
|
tag ctrl_proto { find_reducer([u8], _chan[int]); mapper_done; }
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-08-13 17:20:11 -05:00
|
|
|
fn start_mappers(ctrl: _chan[ctrl_proto], inputs: &[str]) {
|
|
|
|
for i: str in inputs { task::_spawn(bind map_task(ctrl, i)); }
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2011-08-13 17:20:11 -05: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-08-13 17:20:11 -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;
|
|
|
|
alt im.find(key) {
|
|
|
|
some(_c) { c = _c }
|
|
|
|
none. {
|
2011-08-13 17:20:11 -05:00
|
|
|
let p = mk_port();
|
2011-07-27 07:19:39 -05:00
|
|
|
log_err "sending find_reducer";
|
2011-08-13 17:20:11 -05:00
|
|
|
send(ctrl, find_reducer(str::bytes(key), p.mk_chan()));
|
2011-07-27 07:19:39 -05:00
|
|
|
log_err "receiving";
|
2011-08-13 17:20:11 -05:00
|
|
|
c = p.recv();
|
2011-07-27 07:19:39 -05:00
|
|
|
log_err c;
|
|
|
|
im.insert(key, c);
|
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map(input, bind emit(intermediates, ctrl, _, _));
|
2011-08-13 17:20:11 -05:00
|
|
|
send(ctrl, mapper_done);
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2011-08-12 01:43:17 -05:00
|
|
|
fn map_reduce(inputs: &[str]) {
|
2011-08-13 17:20:11 -05:00
|
|
|
let ctrl = mk_port[ctrl_proto]();
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
// This task becomes the master control task. It spawns others
|
|
|
|
// to do the rest.
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let reducers: map::hashmap[str, int];
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
reducers = map::new_str_hash();
|
|
|
|
|
2011-08-13 17:20:11 -05:00
|
|
|
start_mappers(ctrl.mk_chan(), inputs);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-08-12 01:43:17 -05:00
|
|
|
let num_mappers = ivec::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-13 17:20:11 -05:00
|
|
|
alt ctrl.recv() {
|
2011-07-27 07:19:39 -05:00
|
|
|
mapper_done. { num_mappers -= 1; }
|
|
|
|
find_reducer(k, cc) {
|
|
|
|
let c;
|
2011-08-13 17:20:11 -05:00
|
|
|
alt reducers.find(str::unsafe_from_bytes(k)) {
|
|
|
|
some(_c) { c = _c; }
|
|
|
|
none. { c = 0; }
|
|
|
|
}
|
|
|
|
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-08-12 01:43:17 -05:00
|
|
|
map_reduce::map_reduce(~["../src/test/run-pass/hashmap-memory.rs"]);
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|