Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.utils;
import com.intellij.openapi.util.Pair;
import com.intellij.util.Function;
import com.intellij.util.containers.ContainerUtil;
import com.intellij.vcs.log.graph.api.EdgeFilter;
import com.intellij.vcs.log.graph.api.LinearGraph;
import com.intellij.vcs.log.graph.api.LiteLinearGraph;
import com.intellij.vcs.log.graph.api.elements.GraphEdge;
import com.intellij.vcs.log.graph.api.elements.GraphEdgeType;
import com.intellij.vcs.log.graph.impl.facade.LinearGraphController;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.awt.*;
import java.util.Collection;
import java.util.List;
import java.util.Set;
public class LinearGraphUtils {
public static final LinearGraphController.LinearGraphAnswer DEFAULT_GRAPH_ANSWER =
new LinearGraphController.LinearGraphAnswer(null, Cursor.getDefaultCursor(), null, null);
public static boolean intEqual(@Nullable Integer value, int number) {
return value != null && value == number;
}
public static boolean isEdgeUp(@NotNull GraphEdge edge, int nodeIndex) {
return intEqual(edge.getDownNodeIndex(), nodeIndex);
}
public static boolean isEdgeDown(@NotNull GraphEdge edge, int nodeIndex) {
return intEqual(edge.getUpNodeIndex(), nodeIndex);
}
public static boolean isNormalEdge(@Nullable GraphEdge edge) {
if (edge != null && edge.getType().isNormalEdge()) {
assert edge.getUpNodeIndex() != null && edge.getDownNodeIndex() != null;
return true;
}
return false;
}
@Nullable
public static Pair asNormalEdge(@Nullable GraphEdge edge) {
if (isNormalEdge(edge)) {
assert edge.getUpNodeIndex() != null && edge.getDownNodeIndex() != null;
return Pair.create(edge.getUpNodeIndex(), edge.getDownNodeIndex());
}
return null;
}
public static int getNotNullNodeIndex(@NotNull GraphEdge edge) {
if (edge.getUpNodeIndex() != null) return edge.getUpNodeIndex();
assert edge.getDownNodeIndex() != null;
return edge.getDownNodeIndex();
}
@NotNull
public static List getUpNodes(@NotNull LinearGraph graph, final int nodeIndex) {
return ContainerUtil.mapNotNull(graph.getAdjacentEdges(nodeIndex, EdgeFilter.NORMAL_UP), new Function() {
@Nullable
@Override
public Integer fun(GraphEdge graphEdge) {
return graphEdge.getUpNodeIndex();
}
});
}
@NotNull
public static List getDownNodes(@NotNull LinearGraph graph, final int nodeIndex) {
return ContainerUtil.mapNotNull(graph.getAdjacentEdges(nodeIndex, EdgeFilter.NORMAL_DOWN), new Function() {
@Nullable
@Override
public Integer fun(GraphEdge graphEdge) {
return graphEdge.getDownNodeIndex();
}
});
}
@NotNull
public static List getDownNodesIncludeNotLoad(@NotNull final LinearGraph graph, final int nodeIndex) {
return ContainerUtil.mapNotNull(graph.getAdjacentEdges(nodeIndex, EdgeFilter.ALL), new Function() {
@Nullable
@Override
public Integer fun(GraphEdge graphEdge) {
if (isEdgeDown(graphEdge, nodeIndex)) {
if (graphEdge.getType() == GraphEdgeType.NOT_LOAD_COMMIT) return graphEdge.getTargetId();
return graphEdge.getDownNodeIndex();
}
return null;
}
});
}
@NotNull
public static LiteLinearGraph asLiteLinearGraph(@NotNull final LinearGraph graph) {
return new LiteLinearGraph() {
@Override
public int nodesCount() {
return graph.nodesCount();
}
@NotNull
@Override
public List getNodes(final int nodeIndex, @NotNull final NodeFilter filter) {
return ContainerUtil.mapNotNull(graph.getAdjacentEdges(nodeIndex, filter.edgeFilter), new Function() {
@Override
public Integer fun(GraphEdge edge) {
if (isEdgeUp(edge, nodeIndex)) return edge.getUpNodeIndex();
if (isEdgeDown(edge, nodeIndex)) return edge.getDownNodeIndex();
return null;
}
});
}
};
}
@NotNull
public static LinearGraphController.LinearGraphAnswer createCursorAnswer(boolean handCursor) {
Cursor cursor = Cursor.getDefaultCursor();
if (handCursor) cursor = Cursor.getPredefinedCursor(Cursor.HAND_CURSOR);
return new LinearGraphController.LinearGraphAnswer(null, cursor, null, null);
}
@NotNull
public static Cursor getCursor(boolean hand) {
if (hand) {
return Cursor.getPredefinedCursor(Cursor.HAND_CURSOR);
}
else {
return Cursor.getDefaultCursor();
}
}
public static LinearGraphController.LinearGraphAnswer createSelectedAnswer(@NotNull LinearGraph linearGraph,
@NotNull Collection selectedNodeIndexes) {
Set selectedId = ContainerUtil.newHashSet();
for (Integer nodeIndex : selectedNodeIndexes) {
if (nodeIndex == null) continue;
selectedId.add(linearGraph.getNodeId(nodeIndex));
}
return new LinearGraphController.LinearGraphAnswer(null, getCursor(true), null, selectedId);
}
@Nullable
public static GraphEdge getEdge(@NotNull LinearGraph graph, int up, int down) {
List edges = graph.getAdjacentEdges(up, EdgeFilter.NORMAL_DOWN);
for (GraphEdge edge : edges) {
if (intEqual(edge.getDownNodeIndex(), down)) {
return edge;
}
}
return null;
}
@NotNull
public static Set convertNodeIndexesToIds(@NotNull final LinearGraph graph, @NotNull Collection nodeIndexes) {
return ContainerUtil.map2Set(nodeIndexes, new Function() {
@Override
public Integer fun(Integer nodeIndex) {
return graph.getNodeId(nodeIndex);
}
});
}
@NotNull
public static Set convertIdsToNodeIndexes(@NotNull final LinearGraph graph, @NotNull Collection ids) {
List result = ContainerUtil.mapNotNull(ids, new Function() {
@Override
public Integer fun(Integer id) {
return graph.getNodeIndex(id);
}
});
return ContainerUtil.newHashSet(result);
}
}