blob: 8c5e7d3c58005075c8c805adba170d24ac82f7f2 [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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 com.intellij.vcs.log.graph.impl.permanent;
import com.intellij.vcs.log.graph.api.LinearGraph;
import com.intellij.vcs.log.graph.utils.DfsUtil;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class GraphLayoutBuilder {
@NotNull
public static GraphLayoutImpl build(@NotNull LinearGraph graph, @NotNull Comparator<Integer> headerNodeIndexComparator) {
List<Integer> heads = new ArrayList<Integer>();
for (int i = 0; i < graph.nodesCount(); i++) {
if (graph.getUpNodes(i).size() == 0) {
heads.add(i);
}
}
Collections.sort(heads, headerNodeIndexComparator);
GraphLayoutBuilder builder = new GraphLayoutBuilder(graph, heads, new DfsUtil());
return builder.build();
}
@NotNull
private final LinearGraph myGraph;
@NotNull
private final int[] myLayoutIndex;
@NotNull
private final List<Integer> myHeadNodeIndex;
@NotNull
private final int[] myStartLayoutIndexForHead;
@NotNull
private final DfsUtil myDfsUtil;
private int currentLayoutIndex = 1;
private GraphLayoutBuilder(@NotNull LinearGraph graph, @NotNull List<Integer> headNodeIndex, @NotNull DfsUtil dfsUtil) {
myGraph = graph;
myDfsUtil = dfsUtil;
myLayoutIndex = new int[graph.nodesCount()];
myHeadNodeIndex = headNodeIndex;
myStartLayoutIndexForHead = new int[headNodeIndex.size()];
}
private void dfs(int nodeIndex) {
myDfsUtil.nodeDfsIterator(nodeIndex, new DfsUtil.NextNode() {
@Override
public int fun(int currentNode) {
boolean firstVisit = myLayoutIndex[currentNode] == 0;
if (firstVisit)
myLayoutIndex[currentNode] = currentLayoutIndex;
int childWithoutLayoutIndex = -1;
for (int childNodeIndex : myGraph.getDownNodes(currentNode)) {
if (childNodeIndex != LinearGraph.NOT_LOAD_COMMIT && myLayoutIndex[childNodeIndex] == 0) {
childWithoutLayoutIndex = childNodeIndex;
break;
}
}
if (childWithoutLayoutIndex == -1) {
if (firstVisit)
currentLayoutIndex++;
return DfsUtil.NextNode.NODE_NOT_FOUND;
} else {
return childWithoutLayoutIndex;
}
}
});
}
@NotNull
private GraphLayoutImpl build() {
for(int i = 0; i < myHeadNodeIndex.size(); i++) {
int headNodeIndex = myHeadNodeIndex.get(i);
myStartLayoutIndexForHead[i] = currentLayoutIndex;
dfs(headNodeIndex);
}
return new GraphLayoutImpl(myLayoutIndex, myHeadNodeIndex, myStartLayoutIndexForHead);
}
}