/* * Copyright (c) 2012, Synflow * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the IETR/INSA of Rennes nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY * WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ package net.sf.orcc.graph.visit; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import net.sf.orcc.graph.Edge; import net.sf.orcc.graph.Graph; import net.sf.orcc.graph.GraphPackage; import net.sf.orcc.graph.Vertex; import org.eclipse.emf.ecore.EReference; /** * This class defines a reverse post order based on a post-order DFS. * * @author Matthieu Wipliez * */ public class ReversePostOrder extends DFS { /** * Creates the reverse post-ordering of the given graph, starting from the * given roots. If <code>roots</code> is <code>null</code> or empty, this * method visits the graph to find roots. If no entry vertex is found, the * first vertex of the graph is used. * * @param graph * a graph * @param refEdges * the EReference that returns either the incoming or outgoing * edges of a vertex * @param refVertex * the EReference that returns either the source or target of an * edge * @param roots * a list of vertex */ @SuppressWarnings("unchecked") public ReversePostOrder(Graph graph, EReference refEdges, EReference refVertex, List<? extends Vertex> roots) { super(refEdges, refVertex, graph.getVertices().size()); if (roots == null || roots.isEmpty()) { roots = new ArrayList<Vertex>(); EReference opposite = refVertex.getEOpposite(); for (Vertex vertex : graph.getVertices()) { List<Edge> edges = (List<Edge>) vertex.eGet(opposite); if (edges.isEmpty()) { ((List<Vertex>) roots).add(vertex); } } } if (roots.isEmpty()) { // no entry point in the graph, take the first vertex if (!graph.getVertices().isEmpty()) { visitPost(graph.getVertices().get(0)); } } else { for (Vertex vertex : roots) { visitPost(vertex); } } Collections.reverse(vertices); } /** * Creates the reverse post-ordering of the given graph, starting from the * given roots. If <code>roots</code> is <code>null</code> or empty, this * method visits the graph to find roots. If no entry vertex is found, the * first vertex of the graph is used. * * @param graph * a graph * @param refEdges * the EReference that returns either the incoming or outgoing * edges of a vertex * @param refVertex * the EReference that returns either the source or target of an * edge * @param entries * entry vertices given individually */ public ReversePostOrder(Graph graph, EReference refEdges, EReference refVertex, Vertex... entries) { this(graph, refEdges, refVertex, Arrays.asList(entries)); } /** * Creates the reverse post-ordering of the given graph, starting from the * given entries. If <code>entries</code> is <code>null</code> or empty, * this method visits the graph to find roots. If no entry vertex is found, * the first vertex of the graph is used. * * @param graph * a graph * @param entries * a list of vertex */ public ReversePostOrder(Graph graph, List<? extends Vertex> entries) { this(graph, GraphPackage.Literals.VERTEX__OUTGOING, GraphPackage.Literals.EDGE__TARGET, entries); } /** * Creates the reverse post-ordering of the given graph, starting from the * given entries. This is a convenience constructor equivalent to * <code>this(graph, Arrays.asList(entries));</code>. * * @param graph * a graph * @param entries * entry vertices given individually */ public ReversePostOrder(Graph graph, Vertex... entries) { this(graph, Arrays.asList(entries)); } }