package tap.sample;
/**
* Usage .... -i ../../tap/share/decameron.txt -o /tmp/wordcount.out
*/
import java.util.StringTokenizer;
import tap.CommandOptions;
import tap.Pipe;
import tap.Tap;
import tap.TapMapper;
import tap.TapReducer;
import tap.core.*;
public class WordCount {
public static void main(String[] args) throws Exception {
CommandOptions o = new CommandOptions(args);
/* Set up a basic pipeline of map reduce */
Tap wordcount = new Tap(o).named("wordcount");
/* Parse options - just use the standard options - input and output location, time window, etc. */
if (o.input == null) {
System.err.println("Must specify input directory");
return;
}
if (o.output == null) {
System.err.println("Must specify output directory");
return;
}
wordcount.getConf().setJarByClass(WordCount.class);
wordcount.createPhase().reads(o.input).writes(o.output).map(Mapper.class).
groupBy("word").reduce(Reducer.class);
wordcount.make();
}
public static class CountRec {
public String word;
public int count;
}
public static class Mapper extends TapMapper<String,CountRec> {
private CountRec outrec = new CountRec();
@Override
public void map(String line, Pipe<CountRec> out) {
StringTokenizer tokenizer = new StringTokenizer(line);
while (tokenizer.hasMoreTokens()) {
outrec.word = tokenizer.nextToken();
outrec.count = 1;
out.put(outrec);
}
}
}
public static class Reducer extends TapReducer<CountRec,CountRec> {
CountRec outrec = new CountRec();
@Override
public void reduce(Pipe<CountRec> in, Pipe<CountRec> out) {
outrec.count = 0;
for (CountRec rec : in) {
outrec.word = rec.word;
outrec.count += rec.count;
}
out.put(outrec);
}
}
public static class WordMapper extends TapMapper<String, CountRec> {
private CountRec outrec = new CountRec();
@Override
public void map(String line, Pipe<CountRec> out) {
StringTokenizer tokenizer = new StringTokenizer(line);
while (tokenizer.hasMoreTokens()) {
outrec.word = tokenizer.nextToken();
out.put(outrec);
}
}
}
public static class WordReducer extends TapReducer<CountRec, String> {
@Override
public void reduce(Pipe<CountRec> in, Pipe<String> out) {
for(CountRec rec : in) {
out.put(rec.word);
}
}
}
}