nl.tudelft.graphalytics.giraph.algorithms.bfs.BreadthFirstSearchComputationTest.java Source code

Java tutorial

Introduction

Here is the source code for nl.tudelft.graphalytics.giraph.algorithms.bfs.BreadthFirstSearchComputationTest.java

Source

/*
 * Copyright 2015 Delft University of Technology
 *
 * 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 at
 *
 *         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 nl.tudelft.graphalytics.giraph.algorithms.bfs;

import nl.tudelft.graphalytics.domain.algorithms.BreadthFirstSearchParameters;
import nl.tudelft.graphalytics.giraph.GiraphTestGraphLoader;
import nl.tudelft.graphalytics.validation.GraphStructure;
import nl.tudelft.graphalytics.validation.algorithms.bfs.BreadthFirstSearchOutput;
import nl.tudelft.graphalytics.validation.algorithms.bfs.BreadthFirstSearchValidationTest;
import org.apache.giraph.conf.GiraphConfiguration;
import org.apache.giraph.graph.Vertex;
import org.apache.giraph.utils.InternalVertexRunner;
import org.apache.giraph.utils.TestGraph;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.NullWritable;

import java.util.HashMap;
import java.util.Map;

/**
 * @author Tim Hegeman
 */
public class BreadthFirstSearchComputationTest extends BreadthFirstSearchValidationTest {

    @Override
    public BreadthFirstSearchOutput executeDirectedBreadthFirstSearch(GraphStructure graph,
            BreadthFirstSearchParameters parameters) throws Exception {
        GiraphConfiguration configuration = new GiraphConfiguration();
        configuration.setComputationClass(BreadthFirstSearchComputation.class);
        BreadthFirstSearchConfiguration.SOURCE_VERTEX.set(configuration, parameters.getSourceVertex());

        TestGraph<LongWritable, LongWritable, NullWritable> inputGraph = GiraphTestGraphLoader
                .createGraph(configuration, graph, new LongWritable(Long.MAX_VALUE), NullWritable.get());

        TestGraph<LongWritable, LongWritable, NullWritable> result = InternalVertexRunner
                .runWithInMemoryOutput(configuration, inputGraph);

        Map<Long, Long> pathLengths = new HashMap<>();
        for (Map.Entry<LongWritable, Vertex<LongWritable, LongWritable, NullWritable>> vertexEntry : result
                .getVertices().entrySet()) {
            pathLengths.put(vertexEntry.getKey().get(), vertexEntry.getValue().getValue().get());
        }

        return new BreadthFirstSearchOutput(pathLengths);
    }

    @Override
    public BreadthFirstSearchOutput executeUndirectedBreadthFirstSearch(GraphStructure graph,
            BreadthFirstSearchParameters parameters) throws Exception {
        return executeDirectedBreadthFirstSearch(graph, parameters);
    }

}