use of org.commonjava.maven.galley.maven.parse.GalleyMavenXMLException in project indy by Commonjava.
the class MavenMetadataGenerator method writeSnapshotMetadata.
private boolean writeSnapshotMetadata(final ArtifactPathInfo info, final List<StoreResource> files, final ArtifactStore store, final String path, final EventMetadata eventMetadata) throws IndyWorkflowException {
// first level will contain files that have the timestamp-buildnumber version suffix...for each, we need to parse this info.
final Map<SnapshotPart, Set<ArtifactPathInfo>> infosBySnap = new HashMap<SnapshotPart, Set<ArtifactPathInfo>>();
for (final StoreResource resource : files) {
final ArtifactPathInfo resInfo = ArtifactPathInfo.parse(resource.getPath());
if (resInfo != null) {
final SnapshotPart snap = resInfo.getSnapshotInfo();
Set<ArtifactPathInfo> infos = infosBySnap.get(snap);
if (infos == null) {
infos = new HashSet<ArtifactPathInfo>();
infosBySnap.put(snap, infos);
}
infos.add(resInfo);
}
}
if (infosBySnap.isEmpty()) {
return false;
}
final List<SnapshotPart> snaps = new ArrayList<SnapshotPart>(infosBySnap.keySet());
Collections.sort(snaps);
final Transfer metadataFile = fileManager.getTransfer(store, path);
OutputStream stream = null;
try {
final Document doc = xml.newDocumentBuilder().newDocument();
final Map<String, String> coordMap = new HashMap<String, String>();
coordMap.put(ARTIFACT_ID, info.getArtifactId());
coordMap.put(GROUP_ID, info.getGroupId());
coordMap.put(VERSION, info.getVersion());
final String lastUpdated = SnapshotUtils.generateUpdateTimestamp(SnapshotUtils.getCurrentTimestamp());
doc.appendChild(doc.createElementNS(doc.getNamespaceURI(), "metadata"));
xml.createElement(doc.getDocumentElement(), null, coordMap);
xml.createElement(doc, "versioning", Collections.<String, String>singletonMap(LAST_UPDATED, lastUpdated));
SnapshotPart snap = snaps.get(snaps.size() - 1);
Map<String, String> snapMap = new HashMap<String, String>();
if (snap.isLocalSnapshot()) {
snapMap.put(LOCAL_COPY, Boolean.TRUE.toString());
} else {
snapMap.put(TIMESTAMP, SnapshotUtils.generateSnapshotTimestamp(snap.getTimestamp()));
snapMap.put(BUILD_NUMBER, Integer.toString(snap.getBuildNumber()));
}
xml.createElement(doc, "versioning/snapshot", snapMap);
for (int i = 0; i < snaps.size(); i++) {
snap = snaps.get(i);
// the last one is the most recent.
final Set<ArtifactPathInfo> infos = infosBySnap.get(snap);
for (final ArtifactPathInfo pathInfo : infos) {
snapMap = new HashMap<String, String>();
final TypeAndClassifier tc = new SimpleTypeAndClassifier(pathInfo.getType(), pathInfo.getClassifier());
final TypeMapping mapping = typeMapper.lookup(tc);
final String classifier = mapping == null ? pathInfo.getClassifier() : mapping.getClassifier();
if (classifier != null && classifier.length() > 0) {
snapMap.put(CLASSIFIER, classifier);
}
snapMap.put(EXTENSION, mapping == null ? pathInfo.getType() : mapping.getExtension());
snapMap.put(VALUE, pathInfo.getVersion());
snapMap.put(UPDATED, lastUpdated);
xml.createElement(doc, "versioning/snapshotVersions/snapshotVersion", snapMap);
}
}
final String xmlStr = xml.toXML(doc, true);
stream = metadataFile.openOutputStream(TransferOperation.GENERATE, true, eventMetadata);
stream.write(xmlStr.getBytes("UTF-8"));
} catch (final GalleyMavenXMLException e) {
throw new IndyWorkflowException("Failed to generate maven metadata file: %s. Reason: %s", e, path, e.getMessage());
} catch (final IOException e) {
throw new IndyWorkflowException("Failed to write generated maven metadata file: %s. Reason: %s", e, metadataFile, e.getMessage());
} finally {
closeQuietly(stream);
}
return true;
}
use of org.commonjava.maven.galley.maven.parse.GalleyMavenXMLException in project indy by Commonjava.
the class MavenMetadataGenerator method writeVersionMetadata.
private boolean writeVersionMetadata(final List<StoreResource> firstLevelFiles, final ArtifactStore store, final String path, final EventMetadata eventMetadata) throws IndyWorkflowException {
ArtifactPathInfo samplePomInfo = null;
// first level will contain version directories...for each directory, we need to verify the presence of a .pom file before including
// as a valid version
final List<SingleVersion> versions = new ArrayList<SingleVersion>();
nextTopResource: for (final StoreResource topResource : firstLevelFiles) {
final String topPath = topResource.getPath();
if (topPath.endsWith("/")) {
final List<StoreResource> secondLevelListing = fileManager.listRaw(store, topPath);
for (final StoreResource fileResource : secondLevelListing) {
if (fileResource.getPath().endsWith(".pom")) {
ArtifactPathInfo filePomInfo = ArtifactPathInfo.parse(fileResource.getPath());
// check if the pom is valid for the path
if (filePomInfo != null) {
versions.add(VersionUtils.createSingleVersion(new File(topPath).getName()));
if (samplePomInfo == null) {
samplePomInfo = filePomInfo;
}
continue nextTopResource;
}
}
}
}
}
if (versions.isEmpty()) {
return false;
}
Collections.sort(versions);
final Transfer metadataFile = fileManager.getTransfer(store, path);
OutputStream stream = null;
try {
final Document doc = xml.newDocumentBuilder().newDocument();
final Map<String, String> coordMap = new HashMap<String, String>();
coordMap.put(ARTIFACT_ID, samplePomInfo.getArtifactId());
coordMap.put(GROUP_ID, samplePomInfo.getGroupId());
final String lastUpdated = SnapshotUtils.generateUpdateTimestamp(SnapshotUtils.getCurrentTimestamp());
doc.appendChild(doc.createElementNS(doc.getNamespaceURI(), "metadata"));
xml.createElement(doc.getDocumentElement(), null, coordMap);
final Map<String, String> versioningMap = new HashMap<String, String>();
versioningMap.put(LAST_UPDATED, lastUpdated);
final SingleVersion latest = versions.get(versions.size() - 1);
versioningMap.put(LATEST, latest.renderStandard());
SingleVersion release = null;
for (int i = versions.size() - 1; i >= 0; i--) {
final SingleVersion r = versions.get(i);
if (r.isRelease()) {
release = r;
break;
}
}
if (release != null) {
versioningMap.put(RELEASE, release.renderStandard());
}
xml.createElement(doc, "versioning", versioningMap);
final Element versionsElem = xml.createElement(doc, "versioning/versions", Collections.<String, String>emptyMap());
for (final SingleVersion version : versions) {
final Element vElem = doc.createElement(VERSION);
vElem.setTextContent(version.renderStandard());
versionsElem.appendChild(vElem);
}
final String xmlStr = xml.toXML(doc, true);
stream = metadataFile.openOutputStream(TransferOperation.GENERATE, true, eventMetadata);
stream.write(xmlStr.getBytes("UTF-8"));
} catch (final GalleyMavenXMLException e) {
throw new IndyWorkflowException("Failed to generate maven metadata file: %s. Reason: %s", e, path, e.getMessage());
} catch (final IOException e) {
throw new IndyWorkflowException("Failed to write generated maven metadata file: %s. Reason: %s", e, metadataFile, e.getMessage());
} finally {
closeQuietly(stream);
}
return true;
}
Aggregations