use of org.commonjava.maven.atlas.ident.ref.InvalidRefException in project indy by Commonjava.
the class KojiMavenMetadataProvider method getMetadata.
@Override
@IndyMetrics(measure = @Measure(timers = @MetricNamed(name = IndyMetricsKojiNames.METHOD_MAVENMETADATA_GETMETADATA + IndyMetricsNames.TIMER), meters = @MetricNamed(name = IndyMetricsKojiNames.METHOD_MAVENMETADATA_GETMETADATA + IndyMetricsNames.METER)))
public Metadata getMetadata(StoreKey targetKey, String path) throws IndyWorkflowException {
Logger logger = LoggerFactory.getLogger(getClass());
if (group != targetKey.getType()) {
logger.debug("Not a group. Cannot supplement with metadata from Koji builds");
return null;
}
if (!kojiConfig.isEnabled()) {
logger.debug("Koji add-on is disabled.");
return null;
}
if (!kojiConfig.isEnabledFor(targetKey.getName())) {
logger.debug("Koji integration is not enabled for group: {}", targetKey);
return null;
}
File mdFile = new File(path);
File artifactDir = mdFile.getParentFile();
File groupDir = artifactDir == null ? null : artifactDir.getParentFile();
if (artifactDir == null || groupDir == null) {
logger.debug("Invalid groupId / artifactId directory structure: '{}' / '{}'", groupDir, artifactDir);
return null;
}
String groupId = groupDir.getPath().replace(File.separatorChar, '.');
String artifactId = artifactDir.getName();
ProjectRef ga = null;
try {
ga = new SimpleProjectRef(groupId, artifactId);
} catch (InvalidRefException e) {
logger.debug("Not a valid Maven GA: {}:{}. Skipping Koji metadata retrieval.", groupId, artifactId);
}
if (ga == null) {
logger.debug("Could not render a valid Maven GA for path: '{}'", path);
return null;
}
ReentrantLock lock;
synchronized (versionMetadataLocks) {
lock = versionMetadataLocks.get(ga);
if (lock == null) {
lock = new ReentrantLock();
versionMetadataLocks.put(ga, lock);
}
}
boolean locked = false;
try {
locked = lock.tryLock(kojiConfig.getLockTimeoutSeconds(), TimeUnit.SECONDS);
if (!locked) {
throw new IndyWorkflowException("Failed to acquire Koji GA version metadata lock on: %s in %d seconds.", ga, kojiConfig.getLockTimeoutSeconds());
}
Metadata metadata = versionMetadata.get(ga);
ProjectRef ref = ga;
if (metadata == null) {
try {
metadata = kojiClient.withKojiSession((session) -> {
// short-term caches to help improve performance a bit by avoiding xml-rpc calls.
Map<Integer, KojiBuildArchiveCollection> seenBuildArchives = new HashMap<>();
Set<Integer> seenBuilds = new HashSet<>();
List<KojiArchiveInfo> archives = kojiClient.listArchivesMatching(ref, session);
Set<SingleVersion> versions = new HashSet<>();
for (KojiArchiveInfo archive : archives) {
if (!archive.getFilename().endsWith(".pom")) {
logger.debug("Skipping non-POM: {}", archive.getFilename());
continue;
}
SingleVersion singleVersion = VersionUtils.createSingleVersion(archive.getVersion());
if (versions.contains(singleVersion)) {
logger.debug("Skipping already collected version: {}", archive.getVersion());
continue;
}
KojiBuildInfo build;
if (seenBuilds.contains(archive.getBuildId())) {
logger.debug("Skipping already seen build: {}", archive.getBuildId());
continue;
} else {
build = kojiClient.getBuildInfo(archive.getBuildId(), session);
seenBuilds.add(archive.getBuildId());
}
if (build == null) {
logger.debug("Cannot retrieve build info: {}. Skipping: {}", archive.getBuildId(), archive.getFilename());
continue;
}
if (build.getBuildState() != KojiBuildState.COMPLETE) {
logger.debug("Build: {} is not completed. The state is {}. Skipping.", build.getNvr(), build.getBuildState());
continue;
}
if (build.getTaskId() == null) {
logger.debug("Build: {} is not a real build. It looks like a binary import. Skipping.", build.getNvr());
// This is not a real build, it's a binary import.
continue;
}
boolean buildAllowed = false;
if (!kojiConfig.isTagPatternsEnabled()) {
buildAllowed = true;
} else {
logger.debug("Checking for builds/tags of: {}", archive);
List<KojiTagInfo> tags = kojiClient.listTags(build.getId(), session);
for (KojiTagInfo tag : tags) {
if (kojiConfig.isTagAllowed(tag.getName())) {
logger.debug("Koji tag: {} is allowed for proxying.", tag.getName());
buildAllowed = true;
break;
} else {
logger.debug("Koji tag: {} is not allowed for proxying.", tag.getName());
}
}
}
logger.debug("Checking if build passed tag whitelist check and doesn't collide with something in authority store (if configured)...");
if (buildAllowed && buildAuthority.isAuthorized(path, new EventMetadata(), ref, build, session, seenBuildArchives)) {
try {
logger.debug("Adding version: {} for: {}", archive.getVersion(), path);
versions.add(singleVersion);
} catch (InvalidVersionSpecificationException e) {
logger.warn(String.format("Encountered invalid version: %s for archive: %s. Reason: %s", archive.getVersion(), archive.getArchiveId(), e.getMessage()), e);
}
}
}
if (versions.isEmpty()) {
logger.debug("No versions found in Koji builds for metadata: {}", path);
return null;
}
List<SingleVersion> sortedVersions = new ArrayList<>(versions);
Collections.sort(sortedVersions);
Metadata md = new Metadata();
md.setGroupId(ref.getGroupId());
md.setArtifactId(ref.getArtifactId());
Versioning versioning = new Versioning();
versioning.setRelease(sortedVersions.get(versions.size() - 1).renderStandard());
versioning.setLatest(sortedVersions.get(versions.size() - 1).renderStandard());
versioning.setVersions(sortedVersions.stream().map(SingleVersion::renderStandard).collect(Collectors.toList()));
Date lastUpdated = Calendar.getInstance(TimeZone.getTimeZone("UTC")).getTime();
versioning.setLastUpdated(new SimpleDateFormat(LAST_UPDATED_FORMAT).format(lastUpdated));
md.setVersioning(versioning);
return md;
});
} catch (KojiClientException e) {
throw new IndyWorkflowException("Failed to retrieve version metadata for: %s from Koji. Reason: %s", e, ga, e.getMessage());
}
Metadata md = metadata;
if (metadata != null) {
// FIXME: Need a way to listen for cache expiration and re-request this?
versionMetadata.execute((cache) -> cache.getAdvancedCache().put(ref, md, kojiConfig.getMetadataTimeoutSeconds(), TimeUnit.SECONDS));
}
}
return metadata;
} catch (InterruptedException e) {
logger.warn("Interrupted waiting for Koji GA version metadata lock on target: {}", ga);
} finally {
if (locked) {
lock.unlock();
}
}
logger.debug("Returning null metadata result for unknown reason (path: '{}')", path);
return null;
}
use of org.commonjava.maven.atlas.ident.ref.InvalidRefException in project galley by Commonjava.
the class MavenModelProcessor method addParentRelationship.
protected void addParentRelationship(final URI source, final Builder builder, final MavenPomView pomView, final ProjectVersionRef projectRef) {
try {
final ParentView parent = pomView.getParent();
if (parent != null) {
final ProjectVersionRef ref = parent.asProjectVersionRef();
// force the InvalidVersionSpecificationException.
ref.getVersionSpec();
logger.info("Adding parent relationship for: {} to : {}", builder.getProjectRef(), ref);
builder.withParent(new SimpleParentRelationship(source, builder.getProjectRef(), ref));
} else {
logger.info("Adding self-referential parent relationship for: {} to signify project has no parent, but is parsable.", builder.getProjectRef());
builder.withParent(new SimpleParentRelationship(builder.getProjectRef()));
}
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Parent reference is invalid! Reason: %s. Skipping.", projectRef, e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Parent reference is invalid! Reason: %s. Skipping.", projectRef, e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Parent reference is invalid! Reason: %s. Skipping.", projectRef, e.getMessage()), e);
}
}
use of org.commonjava.maven.atlas.ident.ref.InvalidRefException in project galley by Commonjava.
the class MavenModelProcessor method addDependencyRelationships.
protected void addDependencyRelationships(final URI source, final Builder builder, final MavenPomView pomView, final ProjectVersionRef projectRef, final boolean includeManagedDependencies) {
// regardless of whether we're processing managed info, this is STRUCTURAL, so always grab it!
List<DependencyView> boms = null;
try {
boms = pomView.getAllBOMs();
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Failed to retrieve BOM declarations: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Failed to retrieve BOM declarations: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Failed to retrieve BOM declarations: %s. Skipping", pomView.getRef(), e.getMessage()), e);
}
for (int i = 0; i < boms.size(); i++) {
final DependencyView bomView = boms.get(i);
try {
builder.withBoms(new SimpleBomRelationship(source, projectRef, bomView.asProjectVersionRef(), i, bomView.getOriginInfo().isInherited(), bomView.getOriginInfo().isMixin()));
} catch (final InvalidRefException e) {
logger.error(String.format("%s dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), bomView.toXML()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), bomView.toXML()), e);
} catch (final GalleyMavenException e) {
logger.error(String.format("%s dependency is invalid! Reason: %s. Skipping:\n\n%s\n\n", pomView.getRef(), e.getMessage(), bomView.toXML()), e);
}
}
if (includeManagedDependencies) {
List<DependencyView> deps = null;
try {
deps = pomView.getAllManagedDependencies();
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Failed to retrieve managed dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Failed to retrieve managed dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Failed to retrieve managed dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
}
addDependencies(deps, projectRef, builder, source, true);
}
List<DependencyView> deps = null;
try {
deps = pomView.getAllDirectDependencies();
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: Failed to retrieve direct dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: Failed to retrieve direct dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
} catch (final InvalidRefException e) {
logger.error(String.format("%s: Failed to retrieve direct dependencies: %s. Skipping", pomView.getRef(), e.getMessage()), e);
}
addDependencies(deps, projectRef, builder, source, false);
}
use of org.commonjava.maven.atlas.ident.ref.InvalidRefException in project galley by Commonjava.
the class MavenModelProcessor method addPluginDependencies.
private void addPluginDependencies(final Collection<PluginDependencyView> pluginDependencies, final PluginView plugin, final ProjectVersionRef pluginRef, final ProjectVersionRef projectRef, final Builder builder, final URI source, final boolean managed) {
if (pluginDependencies != null) {
for (final PluginDependencyView dep : pluginDependencies) {
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();
boolean inherited = dep.getOriginInfo().isInherited();
boolean mixin = dep.getOriginInfo().isMixin();
builder.withPluginDependencies(new SimplePluginDependencyRelationship(source, location, projectRef, pluginRef, artifactRef, builder.getNextPluginDependencyIndex(pluginRef, managed, inherited), managed, inherited));
} catch (final InvalidRefException e) {
logger.error(String.format("%s: plugin dependency is invalid in: %s! Reason: %s. Skipping:\n\n%s\n\n", projectRef, pluginRef, e.getMessage(), dep.toXML()), e);
} catch (final InvalidVersionSpecificationException e) {
logger.error(String.format("%s: plugin dependency is invalid in: %s! Reason: %s. Skipping:\n\n%s\n\n", projectRef, pluginRef, e.getMessage(), dep.toXML()), e);
} catch (final GalleyMavenException e) {
logger.error(String.format("%s: plugin dependency is invalid in: %s! Reason: %s. Skipping:\n\n%s\n\n", projectRef, pluginRef, e.getMessage(), dep.toXML()), e);
}
}
}
}
use of org.commonjava.maven.atlas.ident.ref.InvalidRefException 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);
}
}
}
}
Aggregations