blob: d25f86bb439775e483f26f90ff88cb638a3f64be [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.eclipse.aether.collection;
import java.util.Iterator;
import java.util.List;
import org.eclipse.aether.RepositoryException;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.graph.Dependency;
import org.eclipse.aether.repository.ArtifactRepository;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.version.Version;
import org.eclipse.aether.version.VersionConstraint;
/**
* Decides which versions matching a version range should actually be considered for the dependency graph. The version
* filter is not invoked for dependencies that do not declare a version range but a single version.
* <p>
* <strong>Note:</strong> Implementations must be stateless.
* <p>
* <em>Warning:</em> This hook is called from a hot spot and therefore implementations should pay attention to
* performance. Among others, implementations should provide a semantic {@link Object#equals(Object) equals()} method.
*
* @see org.eclipse.aether.RepositorySystemSession#getVersionFilter()
* @see org.eclipse.aether.RepositorySystem#collectDependencies(org.eclipse.aether.RepositorySystemSession,
* CollectRequest)
*/
public interface VersionFilter
{
/**
* A context used during version filtering to hold relevant data.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
interface VersionFilterContext
extends Iterable<Version>
{
/**
* Gets the repository system session during which the version filtering happens.
*
* @return The repository system session, never {@code null}.
*/
RepositorySystemSession getSession();
/**
* Gets the dependency whose version range is being filtered.
*
* @return The dependency, never {@code null}.
*/
Dependency getDependency();
/**
* Gets the total number of available versions. This count reflects any removals made during version filtering.
*
* @return The total number of available versions.
*/
int getCount();
/**
* Gets an iterator over the available versions of the dependency. The iterator returns versions in ascending
* order. Use {@link Iterator#remove()} to exclude a version from further consideration in the dependency graph.
*
* @return The iterator of available versions, never {@code null}.
*/
Iterator<Version> iterator();
/**
* Gets the version constraint that was parsed from the dependency's version string.
*
* @return The parsed version constraint, never {@code null}.
*/
VersionConstraint getVersionConstraint();
/**
* Gets the repository from which the specified version was resolved.
*
* @param version The version whose source repository should be retrieved, must not be {@code null}.
* @return The repository from which the version was resolved or {@code null} if unknown.
*/
ArtifactRepository getRepository( Version version );
/**
* Gets the remote repositories from which the versions were resolved.
*
* @return The (read-only) list of repositories, never {@code null}.
*/
List<RemoteRepository> getRepositories();
}
/**
* Filters the available versions for a given dependency. Implementations will usually call
* {@link VersionFilterContext#iterator() context.iterator()} to inspect the available versions and use
* {@link java.util.Iterator#remove()} to delete unacceptable versions. If no versions remain after all filtering
* has been performed, the dependency collection process will automatically fail, i.e. implementations need not
* handle this situation on their own.
*
* @param context The version filter context, must not be {@code null}.
* @throws RepositoryException If the filtering could not be performed.
*/
void filterVersions( VersionFilterContext context )
throws RepositoryException;
/**
* Derives a version filter for the specified collection context. The derived filter will be used to handle version
* ranges encountered in child dependencies of the current node. When calculating the child filter, implementors are
* strongly advised to simply return the current instance if nothing changed to help save memory.
*
* @param context The dependency collection context, must not be {@code null}.
* @return The version filter for the target node or {@code null} if versions should not be filtered any more.
*/
VersionFilter deriveChildFilter( DependencyCollectionContext context );
}