2012-12-13 15:05:22 -06:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2013-01-08 21:37:25 -06:00
|
|
|
pub fn map(filename: ~str, emit: map_reduce::putter) { emit(filename, ~"1"); }
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
mod map_reduce {
|
2013-04-03 07:45:14 -05:00
|
|
|
use core::hashmap::LinearMap;
|
2013-02-02 05:10:12 -06:00
|
|
|
use core::comm::*;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2013-03-01 17:55:31 -06:00
|
|
|
pub type putter = @fn(~str, ~str);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2012-12-28 19:17:05 -06:00
|
|
|
pub type mapper = extern fn(~str, putter);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2012-08-15 16:10:46 -05:00
|
|
|
enum ctrl_proto { find_reducer(~[u8], Chan<int>), mapper_done, }
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2013-01-29 01:54:39 -06:00
|
|
|
fn start_mappers(ctrl: SharedChan<ctrl_proto>, inputs: ~[~str]) {
|
2012-06-30 18:19:07 -05:00
|
|
|
for inputs.each |i| {
|
2013-01-29 01:54:39 -06:00
|
|
|
let ctrl = ctrl.clone();
|
2013-03-15 17:27:15 -05:00
|
|
|
let i = i.clone();
|
|
|
|
task::spawn(|| map_task(ctrl.clone(), i.clone()) );
|
2012-01-04 23:14:53 -06:00
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 01:54:39 -06:00
|
|
|
fn map_task(ctrl: SharedChan<ctrl_proto>, input: ~str) {
|
2013-03-23 20:22:00 -05:00
|
|
|
let intermediates = @mut LinearMap::new();
|
|
|
|
|
|
|
|
fn emit(im: &mut LinearMap<~str, int>, ctrl: SharedChan<ctrl_proto>, key: ~str,
|
|
|
|
_val: ~str) {
|
|
|
|
if im.contains_key(&key) {
|
|
|
|
return;
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
2013-03-23 20:22:00 -05:00
|
|
|
let (pp, cc) = stream();
|
|
|
|
error!("sending find_reducer");
|
|
|
|
ctrl.send(find_reducer(str::to_bytes(key), cc));
|
|
|
|
error!("receiving");
|
|
|
|
let c = pp.recv();
|
|
|
|
error!(c);
|
|
|
|
im.insert(key, c);
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 01:54:39 -06:00
|
|
|
let ctrl_clone = ctrl.clone();
|
|
|
|
::map(input, |a,b| emit(intermediates, ctrl.clone(), a, b) );
|
|
|
|
ctrl_clone.send(mapper_done);
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
|
2012-12-28 19:17:05 -06:00
|
|
|
pub fn map_reduce(inputs: ~[~str]) {
|
2013-01-29 01:54:39 -06:00
|
|
|
let (ctrl_port, ctrl_chan) = stream();
|
|
|
|
let ctrl_chan = SharedChan(ctrl_chan);
|
2011-07-12 16:19:38 -05:00
|
|
|
|
|
|
|
// This task becomes the master control task. It spawns others
|
|
|
|
// to do the rest.
|
|
|
|
|
2013-03-23 20:22:00 -05:00
|
|
|
let mut reducers: LinearMap<~str, int>;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2013-03-23 20:22:00 -05:00
|
|
|
reducers = LinearMap::new();
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2013-03-15 17:27:15 -05:00
|
|
|
start_mappers(ctrl_chan, inputs.clone());
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut num_mappers = vec::len(inputs) as int;
|
2011-07-12 16:19:38 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
while num_mappers > 0 {
|
2013-01-29 01:54:39 -06:00
|
|
|
match ctrl_port.recv() {
|
2012-08-03 21:59:04 -05:00
|
|
|
mapper_done => { num_mappers -= 1; }
|
|
|
|
find_reducer(k, cc) => {
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut c;
|
2013-02-05 21:41:45 -06:00
|
|
|
match reducers.find(&str::from_bytes(k)) {
|
2013-03-23 20:22:00 -05:00
|
|
|
Some(&_c) => { c = _c; }
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { c = 0; }
|
2011-08-13 17:20:11 -05:00
|
|
|
}
|
2013-01-29 01:54:39 -06:00
|
|
|
cc.send(c);
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-07-12 16:19:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
map_reduce::map_reduce(~[~"../src/test/run-pass/hashmap-memory.rs"]);
|
2011-08-15 23:54:52 -05:00
|
|
|
}
|