com.google.cloud.tools.opensource.classpath.ClassReferenceGraph Maven / Gradle / Ivy
Show all versions of dependencies Show documentation
/*
* Copyright 2019 Google LLC.
*
* 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.google.cloud.tools.opensource.classpath;
import com.google.common.collect.ImmutableSet;
import com.google.common.graph.GraphBuilder;
import com.google.common.graph.MutableGraph;
import com.google.common.graph.Traverser;
import java.io.IOException;
import java.util.Set;
/**
* Directed graph of class references. Given classes in a set of entry points, it provides {@link
* #isReachable(String)} for a class to check whether the class is reachable from the entry point
* classes (reachability). The graph's nodes and edges are defined as follows:
*
* Nodes are fully-qualified class names, returned from {@link ClassFile#getBinaryName()} and
* {@link ClassSymbol#getClassBinaryName()} in {@code symbolReferenceMaps}.
*
*
Edges are references between two classes. When {@code ClassA} has a reference to {@code
* ClassB}, a directed edge from {@code ClassA} to {@code ClassB} exists in the graph. Edges in the
* graph are anonymous with no attribute. Because self-loops and parallel edges are unnecessary for
* reachability checks, they are not constructed.
*
* @see
* Java Dependency Glossary: Class Reference Graph
*/
public class ClassReferenceGraph {
private final ImmutableSet reachableClasses;
static ClassReferenceGraph create(
SymbolReferences symbolReferences, Set entryPoints) throws IOException {
ImmutableSet.Builder entryPointClassBuilder = ImmutableSet.builder();
for (ClassPathEntry entry : entryPoints) {
for (String className : entry.getFileNames()) {
entryPointClassBuilder.add(className);
}
}
return new ClassReferenceGraph(symbolReferences, entryPointClassBuilder.build());
}
private ClassReferenceGraph(
SymbolReferences symbolReferences,
Set entryPointClasses) {
MutableGraph graph = GraphBuilder.directed().allowsSelfLoops(false).build();
for (ClassFile classFile : symbolReferences.getClassFiles()) {
String sourceClassName = classFile.getBinaryName();
for (ClassSymbol symbol : symbolReferences.getClassSymbols(classFile)) {
String targetClassName = symbol.getClassBinaryName();
if (!sourceClassName.equals(targetClassName)) { // no self-loop
graph.putEdge(sourceClassName, targetClassName);
}
}
}
entryPointClasses.forEach(graph::addNode); // to avoid IllegalArgumentError in breadthFirst
this.reachableClasses =
ImmutableSet.copyOf(Traverser.forGraph(graph).breadthFirst(entryPointClasses));
}
/**
* Returns true if {@code className} is reachable from one of classes in {@code entryPoints} in
* the graph.
*/
public boolean isReachable(String className) {
return reachableClasses.contains(className);
}
}