org.jboss.galleon.universe.maven.repo.LocalArtifactVersionRangeResolver Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2019 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed 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.jboss.galleon.universe.maven.repo;
import java.nio.file.DirectoryStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.regex.Pattern;
import org.jboss.galleon.universe.maven.MavenArtifact;
import org.jboss.galleon.universe.maven.MavenErrors;
import org.jboss.galleon.universe.maven.MavenLatestVersionNotAvailableException;
import org.jboss.galleon.universe.maven.MavenUniverseException;
/**
*
* @author Alexey Loubyansky
*/
public class LocalArtifactVersionRangeResolver {
private static final MavenArtifactVersionRangeParser versionRangeParser = new MavenArtifactVersionRangeParser();
protected final Path repoHome;
public LocalArtifactVersionRangeResolver(Path localRepo) {
this.repoHome = localRepo;
}
public void resolveLatestVersion(MavenArtifact artifact, String lowestQualifier) throws MavenUniverseException {
resolveLatestVersion(artifact, lowestQualifier, null, null);
}
public void resolveLatestVersion(MavenArtifact artifact, String lowestQualifier, Pattern includeVersion, Pattern excludeVersion) throws MavenUniverseException {
if(artifact.isResolved()) {
throw new MavenUniverseException("Artifact is already resolved");
}
Path path = resolveLatestVersionDir(artifact, lowestQualifier, includeVersion, excludeVersion);
artifact.setVersion(path.getFileName().toString());
path = path.resolve(artifact.getArtifactFileName());
if (!Files.exists(path)) {
throw new MavenUniverseException(pathDoesNotExist(artifact, path));
}
artifact.setPath(path);
}
public String getLatestVersion(MavenArtifact artifact, String lowestQualifier) throws MavenUniverseException {
return resolveLatestVersionDir(artifact, lowestQualifier, null, null).getFileName().toString();
}
public String getLatestVersion(MavenArtifact artifact, String lowestQualifier, Pattern includeVersion, Pattern excludeVersion) throws MavenUniverseException {
return resolveLatestVersionDir(artifact, lowestQualifier, includeVersion, excludeVersion).getFileName().toString();
}
protected String pathDoesNotExist(MavenArtifact artifact, Path path) throws MavenUniverseException {
return "Failed to resolve " + artifact.getCoordsAsString() + ": " + path + " does not exist";
}
private Path resolveLatestVersionDir(MavenArtifact artifact, String lowestQualifier, Pattern includeVersion, Pattern excludeVersion) throws MavenUniverseException {
if(artifact.getGroupId() == null) {
MavenErrors.missingGroupId();
}
if(artifact.getArtifactId() == null) {
MavenErrors.missingArtifactId();
}
if(artifact.getVersionRange() == null) {
throw new MavenUniverseException("Version range is missing for " + artifact.getCoordsAsString());
}
Path artifactDir = repoHome;
final String[] groupParts = artifact.getGroupId().split("\\.");
for (String part : groupParts) {
artifactDir = artifactDir.resolve(part);
}
artifactDir = artifactDir.resolve(artifact.getArtifactId());
if(!Files.exists(artifactDir)) {
throw MavenErrors.artifactNotFound(artifact, repoHome);
}
final MavenArtifactVersionRange range = versionRangeParser.parseRange(artifact.getVersionRange());
if(lowestQualifier == null) {
lowestQualifier = "";
}
try(DirectoryStream stream = Files.newDirectoryStream(artifactDir)) {
final Iterable versions = new Iterable() {
@Override
public Iterator iterator() {
return new Iterator() {
final Iterator i = stream.iterator();
Path nextPath = toNext(range);
@Override
public boolean hasNext() {
return nextPath != null;
}
@Override
public String next() {
if(nextPath != null) {
final String s = nextPath.getFileName().toString();
nextPath = toNext(range);
return s;
}
throw new NoSuchElementException();
}
private Path toNext(final MavenArtifactVersionRange range) {
while(i.hasNext()) {
final Path path = i.next();
if(!Files.isDirectory(path)) {
continue;
}
final MavenArtifactVersion next = new MavenArtifactVersion(path.getFileName().toString());
if(range.includesVersion(next)) {
return path;
}
}
return null;
}
};
}
};
final MavenArtifactVersion latest = MavenArtifactVersion.getLatest(versions, lowestQualifier, includeVersion, excludeVersion);
if(latest == null) {
throw new MavenLatestVersionNotAvailableException(MavenErrors.failedToResolveLatestVersion(artifact.getCoordsAsString()));
}
return artifactDir.resolve(latest.toString());
} catch(MavenUniverseException e) {
throw e;
} catch (Exception e) {
throw new MavenUniverseException(MavenErrors.failedToResolveLatestVersion(artifact.getCoordsAsString()), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy