Coverage Report - org.apache.giraph.io.ReverseEdgeDuplicator
 
Classes in this File Line Coverage Branch Coverage Complexity
ReverseEdgeDuplicator
0%
0/27
0%
0/6
1.625
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *     http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 
 19  
 package org.apache.giraph.io;
 20  
 
 21  
 import java.io.IOException;
 22  
 import org.apache.giraph.edge.Edge;
 23  
 import org.apache.giraph.edge.EdgeFactory;
 24  
 import org.apache.hadoop.io.Writable;
 25  
 import org.apache.hadoop.io.WritableComparable;
 26  
 import org.apache.hadoop.mapreduce.InputSplit;
 27  
 import org.apache.hadoop.mapreduce.TaskAttemptContext;
 28  
 
 29  
 /**
 30  
  * An EdgeReader that creates the opposite direction edge for each edge read.
 31  
  * Used to create an undirected graph from a directed input.
 32  
  * This class is a decorator around any other EdgeReader.
 33  
  *
 34  
  * @param <I> Vertex id
 35  
  * @param <E> Edge Value
 36  
  */
 37  
 public class ReverseEdgeDuplicator<I extends WritableComparable,
 38  
     E extends Writable> extends EdgeReader<I, E> {
 39  
   /** The underlying EdgeReader to wrap */
 40  
   private final EdgeReader<I, E> baseReader;
 41  
 
 42  
   /** Whether the reverse edge stored currently is valid */
 43  0
   private boolean haveReverseEdge = true;
 44  
   /** Reverse of the edge last read */
 45  
   private Edge<I, E> reverseEdge;
 46  
   /** Reverse source of last edge, in other words last edge's target */
 47  
   private I reverseSourceId;
 48  
 
 49  
   /**
 50  
    * Constructor
 51  
    * @param baseReader EdgeReader to wrap
 52  
    */
 53  0
   public ReverseEdgeDuplicator(EdgeReader<I, E> baseReader) {
 54  0
     this.baseReader = baseReader;
 55  0
   }
 56  
 
 57  
   /**
 58  
    * Get wrapped EdgeReader
 59  
    * @return EdgeReader
 60  
    */
 61  
   public EdgeReader<I, E> getBaseReader() {
 62  0
     return baseReader;
 63  
   }
 64  
 
 65  
   @Override
 66  
   public void initialize(InputSplit inputSplit, TaskAttemptContext context)
 67  
     throws IOException, InterruptedException {
 68  0
     baseReader.initialize(inputSplit, context);
 69  0
     haveReverseEdge = true;
 70  0
   }
 71  
 
 72  
   @Override
 73  
   public boolean nextEdge() throws IOException, InterruptedException {
 74  0
     boolean result = true;
 75  0
     if (haveReverseEdge) {
 76  0
       result = baseReader.nextEdge();
 77  0
       haveReverseEdge = false;
 78  
     } else {
 79  0
       Edge<I, E> currentEdge = baseReader.getCurrentEdge();
 80  0
       reverseSourceId = currentEdge.getTargetVertexId();
 81  0
       reverseEdge = EdgeFactory.create(baseReader.getCurrentSourceId(),
 82  0
           currentEdge.getValue());
 83  0
       haveReverseEdge = true;
 84  
     }
 85  0
     return result;
 86  
   }
 87  
 
 88  
   @Override
 89  
   public I getCurrentSourceId() throws IOException, InterruptedException {
 90  0
     if (haveReverseEdge) {
 91  0
       return reverseSourceId;
 92  
     } else {
 93  0
       return baseReader.getCurrentSourceId();
 94  
     }
 95  
   }
 96  
 
 97  
   @Override
 98  
   public Edge<I, E> getCurrentEdge() throws IOException, InterruptedException {
 99  0
     if (haveReverseEdge) {
 100  0
       return reverseEdge;
 101  
     } else {
 102  0
       return baseReader.getCurrentEdge();
 103  
     }
 104  
   }
 105  
 
 106  
   @Override
 107  
   public void close() throws IOException {
 108  0
     baseReader.close();
 109  0
   }
 110  
 
 111  
   @Override
 112  
   public float getProgress() throws IOException, InterruptedException {
 113  0
     return baseReader.getProgress();
 114  
   }
 115  
 }