rust/src/test/run-pass/hashmap-memory.rs

99 lines
2.3 KiB
Rust
Raw Normal View History

/**
A somewhat reduced test case to expose some Valgrind issues.
This originally came from the word-count benchmark.
*/
use std;
import option = option;
import option::some;
import option::none;
import str;
import vec;
import std::map;
import std::map::hashmap;
import task;
import comm::chan;
import comm::port;
import comm::send;
import comm::recv;
import comm;
fn map(filename: str, emit: map_reduce::putter) { emit(filename, "1"); }
mod map_reduce {
export putter;
export mapper;
export map_reduce;
type putter = fn@(str, str);
type mapper = native fn(str, putter);
enum ctrl_proto { find_reducer([u8], chan<int>), mapper_done, }
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); };
}
}
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();
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 }
none {
let p = port();
#error("sending find_reducer");
send(ctrl, find_reducer(str::bytes(key), chan(p)));
#error("receiving");
c = recv(p);
log(error, c);
2011-08-31 17:23:34 -05:00
im.insert(key, c);
2011-07-27 07:19:39 -05:00
}
}
}
map(input, emit(intermediates, ctrl, _, _));
send(ctrl, mapper_done);
}
fn map_reduce(inputs: [str]) {
let ctrl = port();
// 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>;
reducers = map::new_str_hash();
start_mappers(chan(ctrl), inputs);
2011-08-15 18:38:23 -05:00
let num_mappers = vec::len(inputs) as int;
2011-07-27 07:19:39 -05:00
while num_mappers > 0 {
alt recv(ctrl) {
mapper_done { num_mappers -= 1; }
2011-07-27 07:19:39 -05:00
find_reducer(k, cc) {
let c;
alt reducers.find(str::from_bytes(k)) {
some(_c) { c = _c; }
none { c = 0; }
}
send(cc, c);
2011-07-27 07:19:39 -05:00
}
}
}
}
}
fn main() {
2011-09-02 17:34:58 -05:00
map_reduce::map_reduce(["../src/test/run-pass/hashmap-memory.rs"]);
}