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

100 lines
2.4 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;
2012-08-15 16:10:46 -05:00
import comm::Chan;
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 = extern fn(~str, putter);
2012-08-15 16:10:46 -05:00
enum ctrl_proto { find_reducer(~[u8], Chan<int>), mapper_done, }
2012-08-15 16:10:46 -05:00
fn start_mappers(ctrl: Chan<ctrl_proto>, inputs: ~[~str]) {
2012-06-30 18:19:07 -05:00
for inputs.each |i| {
task::spawn(|| map_task(ctrl, i) );
2012-01-04 23:14:53 -06:00
}
}
2012-08-15 16:10:46 -05:00
fn map_task(ctrl: Chan<ctrl_proto>, input: ~str) {
let intermediates = map::str_hash();
2011-07-27 07:19:39 -05:00
2012-08-15 16:10:46 -05:00
fn emit(im: map::hashmap<~str, int>, ctrl: Chan<ctrl_proto>, key: ~str,
val: ~str) {
let mut c;
2012-08-06 14:34:08 -05:00
match im.find(key) {
2012-08-03 21:59:04 -05:00
some(_c) => { c = _c }
none => {
let p = port();
2012-08-22 19:24:52 -05:00
error!("sending find_reducer");
send(ctrl, find_reducer(str::to_bytes(key), chan(p)));
2012-08-22 19:24:52 -05:00
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
}
}
}
2012-06-30 18:19:07 -05:00
map(input, |a,b| emit(intermediates, ctrl, a, b) );
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.
let mut reducers: map::hashmap<~str, int>;
reducers = map::str_hash();
start_mappers(chan(ctrl), inputs);
let mut num_mappers = vec::len(inputs) as int;
2011-07-27 07:19:39 -05:00
while num_mappers > 0 {
2012-08-06 14:34:08 -05:00
match recv(ctrl) {
2012-08-03 21:59:04 -05:00
mapper_done => { num_mappers -= 1; }
find_reducer(k, cc) => {
let mut c;
2012-08-06 14:34:08 -05:00
match reducers.find(str::from_bytes(k)) {
2012-08-03 21:59:04 -05:00
some(_c) => { c = _c; }
none => { c = 0; }
}
send(cc, c);
2011-07-27 07:19:39 -05:00
}
}
}
}
}
fn main() {
map_reduce::map_reduce(~[~"../src/test/run-pass/hashmap-memory.rs"]);
}