2012-12-13 21:05:22 +00:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-11 01:32:48 +00: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.
|
|
|
|
|
2013-12-12 07:17:54 +00:00
|
|
|
#[feature(managed_boxes)];
|
|
|
|
|
2011-07-12 21:19:38 +00:00
|
|
|
/**
|
|
|
|
A somewhat reduced test case to expose some Valgrind issues.
|
|
|
|
|
|
|
|
This originally came from the word-count benchmark.
|
|
|
|
*/
|
|
|
|
|
2013-01-09 03:37:25 +00:00
|
|
|
pub fn map(filename: ~str, emit: map_reduce::putter) { emit(filename, ~"1"); }
|
2011-07-12 21:19:38 +00:00
|
|
|
|
|
|
|
mod map_reduce {
|
2013-05-25 02:35:29 +00:00
|
|
|
use std::hashmap::HashMap;
|
|
|
|
use std::str;
|
|
|
|
use std::task;
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2013-12-10 07:16:18 +00:00
|
|
|
pub type putter<'a> = 'a |~str, ~str|;
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2012-12-29 01:17:05 +00:00
|
|
|
pub type mapper = extern fn(~str, putter);
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2012-08-15 21:10:46 +00:00
|
|
|
enum ctrl_proto { find_reducer(~[u8], Chan<int>), mapper_done, }
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2013-01-29 07:54:39 +00:00
|
|
|
fn start_mappers(ctrl: SharedChan<ctrl_proto>, inputs: ~[~str]) {
|
2013-08-03 16:45:23 +00:00
|
|
|
for i in inputs.iter() {
|
2013-01-29 07:54:39 +00:00
|
|
|
let ctrl = ctrl.clone();
|
2013-03-15 22:27:15 +00:00
|
|
|
let i = i.clone();
|
2013-11-22 07:36:52 +00:00
|
|
|
task::spawn(proc() map_task(ctrl.clone(), i.clone()) );
|
2012-01-05 05:14:53 +00:00
|
|
|
}
|
2011-07-12 21:19:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-29 07:54:39 +00:00
|
|
|
fn map_task(ctrl: SharedChan<ctrl_proto>, input: ~str) {
|
2013-04-03 13:28:36 +00:00
|
|
|
let intermediates = @mut HashMap::new();
|
2013-03-24 01:22:00 +00:00
|
|
|
|
2013-12-06 02:19:06 +00:00
|
|
|
fn emit(im: &mut HashMap<~str, int>,
|
|
|
|
ctrl: SharedChan<ctrl_proto>, key: ~str,
|
2013-03-24 01:22:00 +00:00
|
|
|
_val: ~str) {
|
|
|
|
if im.contains_key(&key) {
|
|
|
|
return;
|
2011-07-12 21:19:38 +00:00
|
|
|
}
|
2013-12-06 02:19:06 +00:00
|
|
|
let (pp, cc) = Chan::new();
|
2013-10-21 20:08:31 +00:00
|
|
|
error!("sending find_reducer");
|
2013-06-11 03:10:37 +00:00
|
|
|
ctrl.send(find_reducer(key.as_bytes().to_owned(), cc));
|
2013-10-21 20:08:31 +00:00
|
|
|
error!("receiving");
|
2013-03-24 01:22:00 +00:00
|
|
|
let c = pp.recv();
|
2013-10-21 20:08:31 +00:00
|
|
|
error!("{:?}", c);
|
2013-03-24 01:22:00 +00:00
|
|
|
im.insert(key, c);
|
2011-07-12 21:19:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-29 07:54:39 +00:00
|
|
|
let ctrl_clone = ctrl.clone();
|
|
|
|
::map(input, |a,b| emit(intermediates, ctrl.clone(), a, b) );
|
|
|
|
ctrl_clone.send(mapper_done);
|
2011-07-12 21:19:38 +00:00
|
|
|
}
|
|
|
|
|
2012-12-29 01:17:05 +00:00
|
|
|
pub fn map_reduce(inputs: ~[~str]) {
|
2013-12-06 02:19:06 +00:00
|
|
|
let (ctrl_port, ctrl_chan) = SharedChan::new();
|
2011-07-12 21:19:38 +00:00
|
|
|
|
|
|
|
// This task becomes the master control task. It spawns others
|
|
|
|
// to do the rest.
|
|
|
|
|
2013-04-03 13:28:36 +00:00
|
|
|
let mut reducers: HashMap<~str, int>;
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2013-04-03 13:28:36 +00:00
|
|
|
reducers = HashMap::new();
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2013-03-15 22:27:15 +00:00
|
|
|
start_mappers(ctrl_chan, inputs.clone());
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2013-05-14 09:52:12 +00:00
|
|
|
let mut num_mappers = inputs.len() as int;
|
2011-07-12 21:19:38 +00:00
|
|
|
|
2011-07-27 12:19:39 +00:00
|
|
|
while num_mappers > 0 {
|
2013-01-29 07:54:39 +00:00
|
|
|
match ctrl_port.recv() {
|
2012-08-04 02:59:04 +00:00
|
|
|
mapper_done => { num_mappers -= 1; }
|
|
|
|
find_reducer(k, cc) => {
|
2013-12-06 02:19:06 +00:00
|
|
|
let mut c;
|
2013-12-16 02:17:43 +00:00
|
|
|
match reducers.find(&str::from_utf8(k).to_owned()) {
|
2013-12-06 02:19:06 +00:00
|
|
|
Some(&_c) => { c = _c; }
|
|
|
|
None => { c = 0; }
|
|
|
|
}
|
2013-01-29 07:54:39 +00:00
|
|
|
cc.send(c);
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
2011-07-12 21:19:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2012-07-14 05:57:48 +00:00
|
|
|
map_reduce::map_reduce(~[~"../src/test/run-pass/hashmap-memory.rs"]);
|
2011-08-16 04:54:52 +00:00
|
|
|
}
|