software.amazon.smithy.model.neighbor.UnreferencedShapes Maven / Gradle / Ivy
/*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.smithy.model.neighbor;
import java.util.HashSet;
import java.util.Set;
import java.util.function.Predicate;
import software.amazon.smithy.model.Model;
import software.amazon.smithy.model.knowledge.NeighborProviderIndex;
import software.amazon.smithy.model.loader.Prelude;
import software.amazon.smithy.model.selector.Selector;
import software.amazon.smithy.model.shapes.Shape;
import software.amazon.smithy.model.shapes.ShapeId;
import software.amazon.smithy.model.traits.TraitDefinition;
import software.amazon.smithy.utils.FunctionalUtils;
/**
* Finds shapes that are not connected to a "root" shape, are not trait definitions, are not referenced by trait
* definitions, and are not referenced in trait values through
* {@link software.amazon.smithy.model.traits.IdRefTrait}.
*
* The "root" shapes defaults to all service shapes in the model. You can customize this by providing a selector
* that considers every matching shape a root shape. For example, a model might consider all shapes marked with
* a trait called "root" to be a root shape.
*
*
Prelude shapes are never considered unreferenced.
*/
public final class UnreferencedShapes {
private static final Selector SERVICE_SHAPES = Selector.parse("service");
private final Selector rootShapeSelector;
private final Predicate keepFilter;
/**
* @param keepFilter Predicate that if matched keeps a shape from being unreferenced.
* @param rootShapeSelector Selector that returns the root shapes to traverse from (defaults to all services).
*/
public UnreferencedShapes(Predicate keepFilter, Selector rootShapeSelector) {
this.keepFilter = keepFilter;
this.rootShapeSelector = rootShapeSelector;
}
public UnreferencedShapes() {
this(FunctionalUtils.alwaysTrue());
}
public UnreferencedShapes(Selector selector) {
this(FunctionalUtils.alwaysTrue(), selector);
}
public UnreferencedShapes(Predicate keepFilter) {
this(keepFilter, SERVICE_SHAPES);
}
/**
* Gets the set of shapes that are unreferenced.
*
* @param model Model to compute from.
* @return Returns the unreferenced shapes.
*/
public Set compute(Model model) {
NeighborProvider baseProvider = NeighborProviderIndex.of(model).getProvider();
NeighborProvider providerWithIdRefRelationships = NeighborProvider.withIdRefRelationships(model, baseProvider);
Walker shapeWalker = new Walker(providerWithIdRefRelationships);
// Find all shapes connected to any service shape.
Set connected = new HashSet<>();
// Stop traversing into trees that are already traversed.
Predicate traversed = rel -> !connected.contains(rel.getNeighborShapeId());
Set rootShapes = rootShapeSelector.select(model);
for (Shape root : rootShapes) {
shapeWalker.iterateShapes(root, traversed).forEachRemaining(shape -> connected.add(shape.getId()));
}
// Don't remove shapes that are traits or connected to traits.
for (Shape trait : model.getShapesWithTrait(TraitDefinition.class)) {
shapeWalker.iterateShapes(trait, traversed).forEachRemaining(shape -> connected.add(shape.getId()));
}
// Any shape that wasn't identified as connected to a root is considered unreferenced.
Set result = new HashSet<>();
for (Shape shape : model.toSet()) {
if (!shape.isMemberShape()
&& !connected.contains(shape.getId())
&& !Prelude.isPreludeShape(shape)
&& keepFilter.test(shape)) {
result.add(shape);
}
}
return result;
}
}