All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ferstl.depgraph.graph.GraphNode Maven / Gradle / Ivy

Go to download

This Maven plugin generates dependency graphs on single modules or in an aggregated form on multi-module projects. The graphs are represented by .dot files. In case that Graphviz is installed on the machine where this plugin is run, the .dot file can be directly converted into all supported image files.

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 2014 - 2016 by Stefan Ferstl 
 *
 * 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.github.ferstl.depgraph.graph;

import java.util.Collection;
import java.util.Set;
import java.util.TreeSet;
import org.apache.maven.artifact.Artifact;
import com.google.common.base.Function;
import com.google.common.collect.Collections2;
import com.google.common.collect.ImmutableSet;

/**
 * Representation of a dependency graph node. It adapts these Maven-specific classes:
 * 
    *
  • {@link org.apache.maven.artifact.Artifact}
  • *
  • {@link org.apache.maven.shared.dependency.graph.DependencyNode}
  • *
  • {@link org.apache.maven.shared.dependency.tree.DependencyNode}
  • *
*/ public final class GraphNode { private org.apache.maven.shared.dependency.graph.DependencyNode graphNode; private org.apache.maven.shared.dependency.tree.DependencyNode treeNode; private final Artifact artifact; private final NodeResolution resolution; private final TreeSet scopes; public GraphNode(Artifact artifact) { this(artifact, NodeResolution.INCLUDED); } public GraphNode(org.apache.maven.shared.dependency.graph.DependencyNode dependencyNode) { this(dependencyNode.getArtifact()); this.graphNode = dependencyNode; } public GraphNode(org.apache.maven.shared.dependency.tree.DependencyNode dependencyNode) { this(dependencyNode.getArtifact(), determineResolution(dependencyNode.getState())); this.treeNode = dependencyNode; } private GraphNode(Artifact artifact, NodeResolution resolution) { if (artifact == null) { throw new NullPointerException("Artifact must not be null"); } // FIXME: better create a copy of the artifact and set the missing attributes there. if (artifact.getScope() == null) { artifact.setScope("compile"); } this.scopes = new TreeSet<>(); this.artifact = artifact; this.resolution = resolution; this.scopes.add(artifact.getScope()); } public void merge(GraphNode other) { if (this == other) { return; } this.scopes.addAll(other.getScopes()); } public Artifact getArtifact() { return this.artifact; } public NodeResolution getResolution() { return this.resolution; } public Set getScopes() { return ImmutableSet.copyOf(this.scopes); } /** * Returns the effective version of this node, i.e. the version that is actually used. This is * important for nodes with a resolution of {@link NodeResolution#OMITTED_FOR_CONFLICT} where * {@code getArtifact().getVersion()} will return the omitted version. * * @return The effective version of this node. */ public String getEffectiveVersion() { if (this.treeNode == null || this.treeNode.getRelatedArtifact() == null) { return this.artifact.getVersion(); } return this.treeNode.getRelatedArtifact().getVersion(); } public Collection getChildren() { if (this.treeNode != null) { return Collections2.transform(this.treeNode.getChildren(), TreeNode2Adapter.INSTANCE); } else if (this.graphNode != null) { return Collections2.transform(this.graphNode.getChildren(), GraphNode2Adapter.INSTANCE); } else { // impossible case return null; } } @Override public String toString() { return this.artifact.toString(); } private static NodeResolution determineResolution(int res) { switch (res) { case org.apache.maven.shared.dependency.tree.DependencyNode.OMITTED_FOR_DUPLICATE: return NodeResolution.OMITTED_FOR_DUPLICATE; case org.apache.maven.shared.dependency.tree.DependencyNode.OMITTED_FOR_CONFLICT: return NodeResolution.OMITTED_FOR_CONFLICT; case org.apache.maven.shared.dependency.tree.DependencyNode.OMITTED_FOR_CYCLE: return NodeResolution.OMITTED_FOR_CYCLE; default: return NodeResolution.INCLUDED; } } private enum TreeNode2Adapter implements Function { INSTANCE; @Override public GraphNode apply(org.apache.maven.shared.dependency.tree.DependencyNode tn) { return new GraphNode(tn); } } private enum GraphNode2Adapter implements Function { INSTANCE; @Override public GraphNode apply(org.apache.maven.shared.dependency.graph.DependencyNode tn) { return new GraphNode(tn); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy