001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *   http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied.  See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019package org.eclipse.aether.collection;
020
021import org.eclipse.aether.graph.Dependency;
022
023/**
024 * Decides whether the dependencies of a dependency node should be traversed as well.
025 * <p>
026 * <strong>Note:</strong> Implementations must be stateless.
027 * <p>
028 * <em>Warning:</em> This hook is called from a hot spot and therefore implementations should pay attention to
029 * performance. Among others, implementations should provide a semantic {@link Object#equals(Object) equals()} method.
030 *
031 * @see org.eclipse.aether.RepositorySystemSession#getDependencyTraverser()
032 * @see org.eclipse.aether.RepositorySystem#collectDependencies(org.eclipse.aether.RepositorySystemSession,
033 *      CollectRequest)
034 */
035public interface DependencyTraverser {
036
037    /**
038     * Decides whether the dependencies of the specified dependency should be traversed.
039     *
040     * @param dependency The dependency to check, must not be {@code null}.
041     * @return {@code true} if the dependency graph builder should recurse into the specified dependency and process its
042     *         dependencies, {@code false} otherwise.
043     */
044    boolean traverseDependency(Dependency dependency);
045
046    /**
047     * Derives a dependency traverser that will be used to decide whether the transitive dependencies of the dependency
048     * given in the collection context shall be traversed. When calculating the child traverser, implementors are
049     * strongly advised to simply return the current instance if nothing changed to help save memory.
050     *
051     * @param context The dependency collection context, must not be {@code null}.
052     * @return The dependency traverser for the target node or {@code null} if dependencies should be unconditionally
053     *         traversed in the sub graph.
054     */
055    DependencyTraverser deriveChildTraverser(DependencyCollectionContext context);
056}