use of org.commonjava.maven.galley.maven.GalleyMavenException in project galley by Commonjava.
the class VersionResolverImpl method resolveAllMultiRefsWithLocations.
private List<ProjectVersionRefLocation> resolveAllMultiRefsWithLocations(final List<? extends Location> locations, final ProjectVersionRef ref, final VersionSelectionStrategy selectionStrategy, final EventMetadata eventMetadata) throws TransferException {
final Map<SingleVersion, Location> available = new TreeMap<SingleVersion, Location>();
for (final Location location : locations) {
try {
final MavenMetadataView metadata = metadataReader.getMetadata(ref.asProjectRef(), Collections.singletonList(location), eventMetadata);
if (metadata != null) {
final List<String> versions = metadata.resolveValues("/metadata/versioning/versions/version");
if (versions != null) {
for (final String version : versions) {
try {
final SingleVersion spec = VersionUtils.createSingleVersion(version);
if (!available.containsKey(spec)) {
available.put(spec, location);
}
} catch (final InvalidVersionSpecificationException e) {
debug("Unparsable version spec found in metadata: '%s' for: %s from: %s.", e, version, ref, location);
}
}
}
}
} catch (final GalleyMavenException e) {
debug("Failed to resolve/parse metadata for variable version of: '%s' from: %s.", e, ref, location);
}
}
if (!available.isEmpty()) {
final List<ProjectVersionRefLocation> result = new ArrayList<ProjectVersionRefLocation>();
final VersionSpec spec = ref.getVersionSpec();
final List<SingleVersion> versions = new ArrayList<SingleVersion>(available.keySet());
Collections.sort(versions);
while (!versions.isEmpty()) {
final SingleVersion selected = selectionStrategy.select(versions);
if (selected != null) {
versions.remove(selected);
if (selected.isConcrete() && spec.contains(selected)) {
result.add(new ProjectVersionRefLocation(ref.selectVersion(selected), available.get(selected)));
}
}
}
return result;
}
return Collections.<ProjectVersionRefLocation>emptyList();
}
use of org.commonjava.maven.galley.maven.GalleyMavenException in project galley by Commonjava.
the class VersionResolverImpl method resolveLatestSnapshotRefWithLocation.
private ProjectVersionRefLocation resolveLatestSnapshotRefWithLocation(final List<? extends Location> locations, final ProjectVersionRef ref, final VersionSelectionStrategy selectionStrategy, final EventMetadata eventMetadata) throws TransferException {
final Map<SingleVersion, Location> available = new TreeMap<SingleVersion, Location>();
for (final Location location : locations) {
try {
final MavenMetadataView metadata = metadataReader.getMetadata(ref, Collections.singletonList(location), eventMetadata);
if (metadata != null) {
addSnapshotFrom(metadata, location, ref, available);
}
} catch (final GalleyMavenException e) {
debug("Failed to resolve/parse metadata for snapshot version of: %s from: %s.", e, ref, location);
}
}
if (available.isEmpty()) {
return null;
}
final List<SingleVersion> versions = new ArrayList<SingleVersion>(available.keySet());
Collections.sort(versions);
final SingleVersion selected = selectionStrategy.select(versions);
if (selected == null) {
return null;
}
return new ProjectVersionRefLocation(ref.selectVersion(selected), available.get(selected));
}
use of org.commonjava.maven.galley.maven.GalleyMavenException in project galley by Commonjava.
the class MavenModelProcessor method addDependencies.
private void addDependencies(final List<DependencyView> deps, final ProjectVersionRef projectRef, final Builder builder, final URI source, final boolean managed) {
if (deps != null) {
for (final DependencyView dep : deps) {
try {
final ProjectVersionRef ref = dep.asProjectVersionRef();
final String profileId = dep.getProfileId();
final URI location = RelationshipUtils.profileLocation(profileId);
final ArtifactRef artifactRef = new SimpleArtifactRef(ref, dep.getType(), dep.getClassifier());
// force the InvalidVersionSpecificationException.
artifactRef.getVersionSpec();
Set<ProjectRefView> exclusionsView = dep.getExclusions();
ProjectRef[] excludes;
if (exclusionsView != null && !exclusionsView.isEmpty()) {
excludes = new ProjectRef[exclusionsView.size()];
int i = 0;
for (ProjectRefView exclusionView : exclusionsView) {
excludes[i] = exclusionView.asProjectRef();
i++;
}
} else {
excludes = new ProjectRef[0];
}
builder.withDependencies(new SimpleDependencyRelationship(source, location, projectRef, artifactRef, dep.getScope(), builder.getNextDependencyIndex(managed), managed, dep.getOriginInfo().isInherited(), dep.isOptional(), excludes));
} catch (final InvalidRefException e) {
logger.error(String.format("%s: dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), dep.toXML()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), dep.toXML()), e);
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), dep.toXML()), e);
}
}
}
}
use of org.commonjava.maven.galley.maven.GalleyMavenException in project galley by Commonjava.
the class MavenModelProcessor method addExtensionUsages.
private void addExtensionUsages(final URI source, final Builder builder, final MavenPomView pomView, final ProjectVersionRef projectRef) throws GalleyMavenException {
List<ExtensionView> extensions = null;
try {
extensions = pomView.getBuildExtensions();
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Cannot retrieve build extensions: %s", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Cannot retrieve build extensions: %s", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Cannot retrieve build extensions: %s", pomView.getRef(), e.getMessage()), e);
}
for (final ExtensionView ext : extensions) {
if (ext == null) {
continue;
}
try {
final ProjectVersionRef ref = ext.asProjectVersionRef();
// force the InvalidVersionSpecificationException.
ref.getVersionSpec();
builder.withExtensions(new SimpleExtensionRelationship(source, projectRef, ref, builder.getNextExtensionIndex(), ext.getOriginInfo().isInherited()));
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Build extension is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), ext.toXML()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Build extension is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), ext.toXML()), e);
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Build extension is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), ext.toXML()), e);
}
}
}
use of org.commonjava.maven.galley.maven.GalleyMavenException in project galley by Commonjava.
the class MavenModelProcessor method addPlugins.
private void addPlugins(final List<PluginView> plugins, final ProjectVersionRef projectRef, final Builder builder, final URI source, final boolean managed) {
if (plugins != null) {
for (final PluginView plugin : plugins) {
ProjectVersionRef pluginRef = null;
try {
if (plugin.getVersion() == null) {
logger.error("%s: Cannot find a version for plugin: {}. Skipping.", projectRef, plugin.toXML());
continue;
}
pluginRef = plugin.asProjectVersionRef();
// force the InvalidVersionSpecificationException.
pluginRef.getVersionSpec();
final String profileId = plugin.getProfileId();
final URI location = RelationshipUtils.profileLocation(profileId);
boolean inherited = plugin.getOriginInfo().isInherited();
boolean mixin = plugin.getOriginInfo().isMixin();
builder.withPlugins(new SimplePluginRelationship(source, location, projectRef, pluginRef, builder.getNextPluginDependencyIndex(projectRef, managed, inherited), managed, inherited));
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: plugin is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), plugin.toXML()), e);
continue;
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: plugin is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), plugin.toXML()), e);
continue;
} catch (final InvalidRefException e) {
logger.error(String.format("%s: plugin is invalid! Reason: %s. Skipping:\n\n%s\n\n", projectRef, e.getMessage(), plugin.toXML()), e);
continue;
}
List<PluginDependencyView> pluginDependencies = null;
Set<PluginDependencyView> impliedPluginDependencies = null;
try {
pluginDependencies = plugin.getLocalPluginDependencies();
impliedPluginDependencies = plugin.getImpliedPluginDependencies();
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Cannot retrieve plugin dependencies for: %s. Reason: %s", projectRef, pluginRef, e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Cannot retrieve plugin dependencies for: %s. Reason: %s", projectRef, pluginRef, e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Cannot retrieve plugin dependencies for: %s. Reason: %s", projectRef, pluginRef, e.getMessage()), e);
}
addPluginDependencies(pluginDependencies, plugin, pluginRef, projectRef, builder, source, managed);
logger.debug("{}: Adding implied dependencies for: {}\n\n {}", projectRef, pluginRef, impliedPluginDependencies == null ? "-NONE-" : new JoinString("\n ", impliedPluginDependencies));
addPluginDependencies(impliedPluginDependencies, plugin, pluginRef, projectRef, builder, source, managed);
}
}
}
Aggregations