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

106 lines
2.8 KiB
Rust
Raw Normal View History

// xfail-fast
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
/**
A somewhat reduced test case to expose some Valgrind issues.
This originally came from the word-count benchmark.
*/
extern mod std;
2012-09-05 14:32:05 -05:00
use std::map;
2012-09-10 17:38:28 -05:00
use std::map::HashMap;
2012-09-05 14:32:05 -05:00
use comm::Chan;
use comm::Port;
use comm::send;
use comm::recv;
fn map(filename: ~str, emit: map_reduce::putter) { emit(filename, ~"1"); }
mod map_reduce {
#[legacy_exports];
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| {
2012-12-14 16:58:16 -06:00
let i = copy *i;
task::spawn(|move i| map_task(ctrl, copy 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::HashMap();
2011-07-27 07:19:39 -05:00
2012-09-10 17:38:28 -05:00
fn emit(im: map::HashMap<~str, int>, ctrl: Chan<ctrl_proto>, key: ~str,
val: ~str) {
let mut c;
match im.find(copy key) {
2012-08-20 14:23:37 -05:00
Some(_c) => { c = _c }
None => {
2012-08-27 16:22:25 -05:00
let p = Port();
2012-08-22 19:24:52 -05:00
error!("sending find_reducer");
2012-10-03 16:38:01 -05:00
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]) {
2012-08-27 16:22:25 -05:00
let ctrl = Port();
// This task becomes the master control task. It spawns others
// to do the rest.
2012-09-10 17:38:28 -05:00
let mut reducers: map::HashMap<~str, int>;
reducers = map::HashMap();
start_mappers(Chan(&ctrl), copy 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-20 14:23:37 -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"]);
}