org.codehaus.mojo.versions.api.ArtifactVersions Maven / Gradle / Ivy
package org.codehaus.mojo.versions.api;
/*
* 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.
*/
import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.ArtifactUtils;
import org.apache.maven.artifact.versioning.ArtifactVersion;
import org.apache.maven.artifact.versioning.Restriction;
import org.apache.maven.artifact.versioning.VersionRange;
import org.codehaus.mojo.versions.ordering.VersionComparator;
import java.util.List;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
/**
* Holds the results of a search for versions of an artifact.
*
* @author Stephen Connolly
* @since 1.0-alpha-3
*/
public class ArtifactVersions
extends AbstractVersionDetails
{
/**
* The artifact that who's versions we hold details of.
*
* @since 1.0-alpha-3
*/
private final Artifact artifact;
/**
* The available versions.
*
* @since 1.0-alpha-3
*/
private final SortedSet versions;
/**
* The version comparison rule that is used for this artifact.
*
* @since 1.0-alpha-3
*/
private final VersionComparator versionComparator;
/**
* Creates a new {@link ArtifactVersions} instance.
*
* @param artifact The artifact.
* @param versions The versions.
* @param versionComparator The version comparison rule.
* @since 1.0-alpha-3
*/
public ArtifactVersions( Artifact artifact, List versions, VersionComparator versionComparator )
{
this.artifact = artifact;
this.versionComparator = versionComparator;
this.versions = new TreeSet( versionComparator );
this.versions.addAll( versions );
if ( artifact.getVersion() != null )
{
setCurrentVersion( artifact.getVersion() );
}
}
/**
* Checks if the version is in the range (and ensures that the range respects the -!
syntax
* to rule out any qualifiers from range boundaries).
*
* @param version the version to check.
* @param range the range to check.
* @return true
if and only if the version is in the range.
* @since 1.3
*/
public static boolean isVersionInRange( ArtifactVersion version, VersionRange range )
{
if ( !range.containsVersion( version ) )
{
return false;
}
for ( Restriction r : ( (List) range.getRestrictions() ) )
{
if ( r.containsVersion( version ) )
{
// check for the -! syntax
if ( !r.isLowerBoundInclusive() && r.getLowerBound() != null )
{
String s = r.getLowerBound().toString();
if ( s.endsWith( "-!" ) && version.toString().startsWith( s.substring( 0, s.length() - 2 ) ) )
{
return false;
}
}
if ( !r.isUpperBoundInclusive() && r.getUpperBound() != null )
{
String s = r.getUpperBound().toString();
if ( s.endsWith( "-!" ) && version.toString().startsWith( s.substring( 0, s.length() - 2 ) ) )
{
return false;
}
}
}
}
return true;
}
/**
* Returns the artifact who's version information we are holding.
*
* @return the artifact who's version information we are holding.
* @since 1.0-alpha-3
*/
public Artifact getArtifact()
{
return artifact;
}
/**
* Returns the groupId of the artifact who's versions we are holding.
*
* @return the groupId.
* @since 1.0-alpha-3
*/
public String getGroupId()
{
return getArtifact().getGroupId();
}
/**
* Returns the artifactId of the artifact who's versions we are holding.
*
* @return the artifactId.
* @since 1.0-alpha-3
*/
public String getArtifactId()
{
return getArtifact().getArtifactId();
}
public ArtifactVersion[] getVersions( boolean includeSnapshots )
{
Set result;
if ( includeSnapshots )
{
result = versions;
}
else
{
result = new TreeSet( versionComparator );
for ( ArtifactVersion candidate : versions )
{
if ( ArtifactUtils.isSnapshot( candidate.toString() ) )
{
continue;
}
result.add( candidate );
}
}
return result.toArray( new ArtifactVersion[result.size()] );
}
public VersionComparator getVersionComparator()
{
return versionComparator;
}
/**
* {@inheritDoc}
*/
public String toString()
{
final StringBuilder sb = new StringBuilder();
sb.append( "ArtifactVersions" );
sb.append( "{artifact=" ).append( artifact );
sb.append( ", versions=" ).append( versions );
sb.append( ", versionComparator=" ).append( versionComparator );
sb.append( '}' );
return sb.toString();
}
}