blob: 020135402017bd1b87f1e8d1de30d28aa07ad954 [file] [log] [blame]
/*
* Copyright 2009-2013 by The Regents of the University of California
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may obtain a copy of the License from
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package edu.uci.ics.pregelix.benchmark.io;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.Map.Entry;
import org.apache.giraph.edge.Edge;
import org.apache.giraph.edge.MapMutableEdge;
import org.apache.giraph.io.formats.TextVertexInputFormat;
import org.apache.hadoop.io.DoubleWritable;
import org.apache.hadoop.io.VLongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.InputSplit;
import org.apache.hadoop.mapreduce.TaskAttemptContext;
public class TextSPInputFormat extends TextVertexInputFormat<VLongWritable, DoubleWritable, DoubleWritable> {
@Override
public TextVertexReader createVertexReader(InputSplit split, TaskAttemptContext context) throws IOException {
return new TextVertexReaderFromEachLine() {
StringTokenizer items;
@Override
protected VLongWritable getId(Text line) throws IOException {
items = new StringTokenizer(line.toString());
return new VLongWritable(Long.parseLong(items.nextToken()));
}
@Override
protected DoubleWritable getValue(Text line) throws IOException {
return null;
}
@Override
protected Iterable<Edge<VLongWritable, DoubleWritable>> getEdges(Text line) throws IOException {
List<Edge<VLongWritable, DoubleWritable>> edges = new ArrayList<Edge<VLongWritable, DoubleWritable>>();
Map<VLongWritable, DoubleWritable> edgeMap = new HashMap<VLongWritable, DoubleWritable>();
while (items.hasMoreTokens()) {
edgeMap.put(new VLongWritable(Long.parseLong(items.nextToken())), null);
}
for (Entry<VLongWritable, DoubleWritable> entry : edgeMap.entrySet()) {
MapMutableEdge<VLongWritable, DoubleWritable> edge = new MapMutableEdge<VLongWritable, DoubleWritable>();
edge.setEntry(entry);
edge.setValue(new DoubleWritable(1.0));
edges.add(edge);
}
return edges;
}
};
}
}