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;
|
|
|
|
|
|
|
|
import option = std::option::t;
|
|
|
|
import std::option::some;
|
|
|
|
import std::option::none;
|
|
|
|
import std::str;
|
2011-08-25 15:12:54 -07:00
|
|
|
import std::istr;
|
2011-08-15 16:38:23 -07:00
|
|
|
import std::vec;
|
2011-07-12 14:19:38 -07:00
|
|
|
import std::map;
|
2011-08-13 15:20:11 -07:00
|
|
|
import std::task;
|
2011-08-25 11:20:43 -07:00
|
|
|
import std::comm::chan;
|
|
|
|
import std::comm::port;
|
2011-08-13 15:20:11 -07:00
|
|
|
import std::comm::send;
|
2011-08-25 11:20:43 -07:00
|
|
|
import std::comm::recv;
|
2011-08-13 15:20:11 -07:00
|
|
|
import std::comm;
|
2011-07-12 14:19:38 -07:00
|
|
|
|
2011-07-27 14:19:39 +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-08-19 15:16:48 -07:00
|
|
|
type putter = fn(str, str);
|
2011-07-12 14:19:38 -07:00
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
type mapper = fn(str, putter);
|
2011-07-12 14:19:38 -07:00
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
tag ctrl_proto { find_reducer([u8], chan<int>); mapper_done; }
|
2011-07-12 14:19:38 -07:00
|
|
|
|
2011-08-25 11:20:43 -07: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 14:19:38 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
fn map_task(ctrl: chan<ctrl_proto>, input: str) {
|
2011-07-27 14:19:39 +02:00
|
|
|
|
|
|
|
let intermediates = map::new_str_hash();
|
|
|
|
|
2011-08-25 15:12:54 -07:00
|
|
|
fn emit(im: &map::hashmap<istr, int>, ctrl: chan<ctrl_proto>,
|
2011-08-13 15:20:11 -07:00
|
|
|
key: str, val: str) {
|
2011-07-27 14:19:39 +02:00
|
|
|
let c;
|
2011-08-25 15:12:54 -07:00
|
|
|
alt im.find(istr::from_estr(key)) {
|
2011-07-27 14:19:39 +02:00
|
|
|
some(_c) { c = _c }
|
|
|
|
none. {
|
2011-08-25 11:20:43 -07:00
|
|
|
let p = port();
|
2011-07-27 14:19:39 +02:00
|
|
|
log_err "sending find_reducer";
|
2011-08-25 11:20:43 -07:00
|
|
|
send(ctrl, find_reducer(str::bytes(key), chan(p)));
|
2011-07-27 14:19:39 +02:00
|
|
|
log_err "receiving";
|
2011-08-25 11:20:43 -07:00
|
|
|
c = recv(p);
|
2011-07-27 14:19:39 +02:00
|
|
|
log_err c;
|
2011-08-25 15:12:54 -07:00
|
|
|
im.insert(istr::from_estr(key), c);
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-07-12 14:19:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map(input, bind emit(intermediates, ctrl, _, _));
|
2011-08-13 15:20:11 -07:00
|
|
|
send(ctrl, mapper_done);
|
2011-07-12 14:19:38 -07:00
|
|
|
}
|
|
|
|
|
2011-08-11 23:43:17 -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.
|
|
|
|
|
2011-08-25 15:12:54 -07:00
|
|
|
let reducers: map::hashmap<istr, int>;
|
2011-07-12 14:19:38 -07:00
|
|
|
|
|
|
|
reducers = map::new_str_hash();
|
|
|
|
|
2011-08-25 11:20:43 -07:00
|
|
|
start_mappers(chan(ctrl), inputs);
|
2011-07-12 14:19:38 -07:00
|
|
|
|
2011-08-15 16:38:23 -07:00
|
|
|
let 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) {
|
2011-07-27 14:19:39 +02:00
|
|
|
mapper_done. { num_mappers -= 1; }
|
|
|
|
find_reducer(k, cc) {
|
|
|
|
let c;
|
2011-08-25 15:12:54 -07:00
|
|
|
alt reducers.find(istr::unsafe_from_bytes(k)) {
|
2011-08-13 15:20:11 -07:00
|
|
|
some(_c) { c = _c; }
|
|
|
|
none. { c = 0; }
|
|
|
|
}
|
|
|
|
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() {
|
2011-08-19 15:16:48 -07:00
|
|
|
map_reduce::map_reduce(["../src/test/run-pass/hashmap-memory.rs"]);
|
2011-08-15 21:54:52 -07:00
|
|
|
}
|