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

software.amazon.smithy.model.neighbor.Walker Maven / Gradle / Ivy

/*
 * Copyright 2020 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.ArrayDeque;
import java.util.Deque;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.NoSuchElementException;
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.shapes.Shape;
import software.amazon.smithy.model.shapes.ShapeId;
import software.amazon.smithy.utils.FunctionalUtils;

/**
 * Walks connected shapes within a Model.
 *
 * 

Any shape that is connected to another shape is "walked". A single * shape can have multiple relationships to the same shape. For example, * a resource can have both a "get" and a "child" relationship to an * operation; however, the referenced operation will appear only once * in the walker output. * *

Only shapes form a connected graph. Relationships created by traits * are not traversed by the walker. */ public final class Walker { private final NeighborProvider provider; /** * @param model Model to traverse. */ public Walker(Model model) { this(NeighborProviderIndex.of(model).getProvider()); } /** * @param provider Neighbor provider used to traverse relationships. */ public Walker(NeighborProvider provider) { this.provider = provider; } /** * Walks connected shapes in the model, returning them in a set. * * @param shape The shape to start the traversal from. * @return Returns a set of connected shapes. */ public Set walkShapes(Shape shape) { return walkShapes(shape, FunctionalUtils.alwaysTrue()); } /** * Walks connected shapes in the model (including the given shape), * and returns them in a set. * * @param shape The shape to start the traversal from. * @param predicate Predicate used to prevent traversing relationships. * @return Returns a set of connected shapes. */ public Set walkShapes(Shape shape, Predicate predicate) { Set result = new LinkedHashSet<>(); Iterator shapeIterator = iterateShapes(shape, predicate); while (shapeIterator.hasNext()) { result.add(shapeIterator.next()); } return result; } /** * Walks connected shapes in the model, returning their IDs in a set. * * @param shape The shape to start the traversal from. * @return Returns a set of connected shape IDs. */ public Set walkShapeIds(Shape shape) { return walkShapeIds(shape, FunctionalUtils.alwaysTrue()); } /** * Walks connected shapes in the model (including the given shape), * and returns a set of shape IDs. * * @param shape The shape to start the traversal from. * @param predicate Predicate used to prevent traversing relationships. * @return Returns a set of connected shape IDs. */ public Set walkShapeIds(Shape shape, Predicate predicate) { Set result = new LinkedHashSet<>(); Iterator shapeIterator = iterateShapes(shape, predicate); while (shapeIterator.hasNext()) { result.add(shapeIterator.next().getId()); } return result; } /** * Lazily iterates over all of the relationships in the closure of * the given shape, including the given shape. * * @param shape Shape to find the closure of. * @return Returns an iterator of shapes connected to {@code shape}. */ public Iterator iterateShapes(Shape shape) { return iterateShapes(shape, FunctionalUtils.alwaysTrue()); } /** * Lazily iterates over all of the unique shapes in the closure of * the given shape, including the given shape. * * @param shape Shape to find the closure of. * @param predicate Predicate used to short-circuit relationship branches. * @return Returns an iterator of shapes connected to {@code shape}. */ public Iterator iterateShapes(Shape shape, Predicate predicate) { return new ShapeIterator(shape, predicate, provider); } private static final class ShapeIterator implements Iterator { private final Predicate predicate; private final Deque stack = new ArrayDeque<>(); private final Set traversed = new HashSet<>(); private final NeighborProvider provider; private Shape queued; ShapeIterator(Shape shape, Predicate predicate, NeighborProvider provider) { this.predicate = predicate; this.provider = provider; // Always include the given shape in the results. queued = shape; traversed.add(shape.getId()); pushNeighbors(provider.getNeighbors(shape)); } @Override public boolean hasNext() { if (queued != null) { return true; } while (!stack.isEmpty()) { // Every relationship is returned, even if the same shape is pointed // to multiple times from a single shape. Relationship relationship = stack.pop(); // Only traverse this relationship if the shape it points to hasn't // already been traversed. if (traversed.add(relationship.getNeighborShapeId())) { queued = relationship.getNeighborShape().get(); pushNeighbors(provider.getNeighbors(queued)); return true; } } return false; } @Override public Shape next() { if (queued == null) { throw new NoSuchElementException("No relationships in relationship iterator stack"); } Shape shape = queued; queued = null; return shape; } private void pushNeighbors(List relationships) { for (Relationship rel : relationships) { // Only look at valid relationships that pass the predicate. if (rel.getNeighborShape().isPresent() && predicate.test(rel)) { stack.push(rel); } } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy