use of org.sonatype.aether.resolution.ArtifactResult in project zeppelin by apache.
the class SparkDependencyResolver method loadFromMvn.
private List<String> loadFromMvn(String artifact, Collection<String> excludes, boolean addSparkContext) throws Exception {
List<String> loadedLibs = new LinkedList<>();
Collection<String> allExclusions = new LinkedList<>();
allExclusions.addAll(excludes);
allExclusions.addAll(Arrays.asList(exclusions));
List<ArtifactResult> listOfArtifact;
listOfArtifact = getArtifactsWithDep(artifact, allExclusions);
Iterator<ArtifactResult> it = listOfArtifact.iterator();
while (it.hasNext()) {
Artifact a = it.next().getArtifact();
String gav = a.getGroupId() + ":" + a.getArtifactId() + ":" + a.getVersion();
for (String exclude : allExclusions) {
if (gav.startsWith(exclude)) {
it.remove();
break;
}
}
}
List<URL> newClassPathList = new LinkedList<>();
List<File> files = new LinkedList<>();
for (ArtifactResult artifactResult : listOfArtifact) {
logger.info("Load " + artifactResult.getArtifact().getGroupId() + ":" + artifactResult.getArtifact().getArtifactId() + ":" + artifactResult.getArtifact().getVersion());
newClassPathList.add(artifactResult.getArtifact().getFile().toURI().toURL());
files.add(artifactResult.getArtifact().getFile());
loadedLibs.add(artifactResult.getArtifact().getGroupId() + ":" + artifactResult.getArtifact().getArtifactId() + ":" + artifactResult.getArtifact().getVersion());
}
global.new Run();
if (sc.version().startsWith("1.1")) {
updateRuntimeClassPath_1_x(newClassPathList.toArray(new URL[0]));
} else {
updateRuntimeClassPath_2_x(newClassPathList.toArray(new URL[0]));
}
updateCompilerClassPath(newClassPathList.toArray(new URL[0]));
if (addSparkContext) {
for (File f : files) {
sc.addJar(f.getAbsolutePath());
}
}
return loadedLibs;
}
use of org.sonatype.aether.resolution.ArtifactResult in project zeppelin by apache.
the class DependencyResolver method loadFromMvn.
private List<File> loadFromMvn(String artifact, Collection<String> excludes) throws RepositoryException {
Collection<String> allExclusions = new LinkedList<>();
allExclusions.addAll(excludes);
allExclusions.addAll(Arrays.asList(exclusions));
List<ArtifactResult> listOfArtifact;
listOfArtifact = getArtifactsWithDep(artifact, allExclusions);
Iterator<ArtifactResult> it = listOfArtifact.iterator();
while (it.hasNext()) {
Artifact a = it.next().getArtifact();
String gav = a.getGroupId() + ":" + a.getArtifactId() + ":" + a.getVersion();
for (String exclude : allExclusions) {
if (gav.startsWith(exclude)) {
it.remove();
break;
}
}
}
List<File> files = new LinkedList<>();
for (ArtifactResult artifactResult : listOfArtifact) {
files.add(artifactResult.getArtifact().getFile());
logger.debug("load {}", artifactResult.getArtifact().getFile().getAbsolutePath());
}
return files;
}
use of org.sonatype.aether.resolution.ArtifactResult in project sonatype-aether by sonatype.
the class ResolveTransitiveDependencies method main.
public static void main(String[] args) throws Exception {
System.out.println("------------------------------------------------------------");
System.out.println(ResolveTransitiveDependencies.class.getSimpleName());
RepositorySystem system = Booter.newRepositorySystem();
RepositorySystemSession session = Booter.newRepositorySystemSession(system);
Artifact artifact = new DefaultArtifact("org.sonatype.aether:aether-impl:1.9");
RemoteRepository repo = Booter.newCentralRepository();
DependencyFilter classpathFlter = DependencyFilterUtils.classpathFilter(JavaScopes.COMPILE);
CollectRequest collectRequest = new CollectRequest();
collectRequest.setRoot(new Dependency(artifact, JavaScopes.COMPILE));
collectRequest.addRepository(repo);
DependencyRequest dependencyRequest = new DependencyRequest(collectRequest, classpathFlter);
List<ArtifactResult> artifactResults = system.resolveDependencies(session, dependencyRequest).getArtifactResults();
for (ArtifactResult artifactResult : artifactResults) {
System.out.println(artifactResult.getArtifact() + " resolved to " + artifactResult.getArtifact().getFile());
}
}
use of org.sonatype.aether.resolution.ArtifactResult in project sonatype-aether by sonatype.
the class DefaultArtifactResolver method resolve.
private List<ArtifactResult> resolve(RepositorySystemSession session, Collection<? extends ArtifactRequest> requests) throws ArtifactResolutionException {
List<ArtifactResult> results = new ArrayList<ArtifactResult>(requests.size());
boolean failures = false;
LocalRepositoryManager lrm = session.getLocalRepositoryManager();
WorkspaceReader workspace = session.getWorkspaceReader();
List<ResolutionGroup> groups = new ArrayList<ResolutionGroup>();
for (ArtifactRequest request : requests) {
RequestTrace trace = DefaultRequestTrace.newChild(request.getTrace(), request);
ArtifactResult result = new ArtifactResult(request);
results.add(result);
Artifact artifact = request.getArtifact();
List<RemoteRepository> repos = request.getRepositories();
artifactResolving(session, trace, artifact);
String localPath = artifact.getProperty(ArtifactProperties.LOCAL_PATH, null);
if (localPath != null) {
// unhosted artifact, just validate file
File file = new File(localPath);
if (!file.isFile()) {
failures = true;
result.addException(new ArtifactNotFoundException(artifact, null));
} else {
artifact = artifact.setFile(file);
result.setArtifact(artifact);
artifactResolved(session, trace, artifact, null, result.getExceptions());
}
continue;
}
VersionResult versionResult;
try {
VersionRequest versionRequest = new VersionRequest(artifact, repos, request.getRequestContext());
versionRequest.setTrace(trace);
versionResult = versionResolver.resolveVersion(session, versionRequest);
} catch (VersionResolutionException e) {
result.addException(e);
continue;
}
artifact = artifact.setVersion(versionResult.getVersion());
if (versionResult.getRepository() != null) {
if (versionResult.getRepository() instanceof RemoteRepository) {
repos = Collections.singletonList((RemoteRepository) versionResult.getRepository());
} else {
repos = Collections.emptyList();
}
}
if (workspace != null) {
File file = workspace.findArtifact(artifact);
if (file != null) {
artifact = artifact.setFile(file);
result.setArtifact(artifact);
result.setRepository(workspace.getRepository());
artifactResolved(session, trace, artifact, result.getRepository(), null);
continue;
}
}
LocalArtifactResult local = lrm.find(session, new LocalArtifactRequest(artifact, repos, request.getRequestContext()));
if (isLocallyInstalled(local, versionResult)) {
if (local.getRepository() != null) {
result.setRepository(local.getRepository());
} else {
result.setRepository(lrm.getRepository());
}
try {
artifact = artifact.setFile(getFile(session, artifact, local.getFile()));
result.setArtifact(artifact);
artifactResolved(session, trace, artifact, result.getRepository(), null);
} catch (ArtifactTransferException e) {
result.addException(e);
}
if (!local.isAvailable()) {
/*
* NOTE: Interop with simple local repository: An artifact installed by a simple local repo manager
* will not show up in the repository tracking file of the enhanced local repository. If however the
* maven-metadata-local.xml tells us the artifact was installed locally, we sync the repository
* tracking file.
*/
lrm.add(session, new LocalArtifactRegistration(artifact));
}
continue;
} else if (local.getFile() != null) {
logger.debug("Verifying availability of " + local.getFile() + " from " + repos);
}
if (session.isOffline()) {
Exception exception = new ArtifactNotFoundException(artifact, null, "The repository system is offline but the artifact " + artifact + " is not available in the local repository.");
result.addException(exception);
artifactResolved(session, trace, artifact, null, result.getExceptions());
continue;
}
AtomicBoolean resolved = new AtomicBoolean(false);
Iterator<ResolutionGroup> groupIt = groups.iterator();
for (RemoteRepository repo : repos) {
if (!repo.getPolicy(artifact.isSnapshot()).isEnabled()) {
continue;
}
ResolutionGroup group = null;
while (groupIt.hasNext()) {
ResolutionGroup t = groupIt.next();
if (t.matches(repo)) {
group = t;
break;
}
}
if (group == null) {
group = new ResolutionGroup(repo);
groups.add(group);
groupIt = Collections.<ResolutionGroup>emptyList().iterator();
}
group.items.add(new ResolutionItem(trace, artifact, resolved, result, local, repo));
}
}
for (ResolutionGroup group : groups) {
List<ArtifactDownload> downloads = new ArrayList<ArtifactDownload>();
for (ResolutionItem item : group.items) {
Artifact artifact = item.artifact;
if (item.resolved.get()) {
// resolved in previous resolution group
continue;
}
ArtifactDownload download = new ArtifactDownload();
download.setArtifact(artifact);
download.setRequestContext(item.request.getRequestContext());
download.setTrace(item.trace);
if (item.local.getFile() != null) {
download.setFile(item.local.getFile());
download.setExistenceCheck(true);
} else {
String path = lrm.getPathForRemoteArtifact(artifact, group.repository, item.request.getRequestContext());
download.setFile(new File(lrm.getRepository().getBasedir(), path));
}
boolean snapshot = artifact.isSnapshot();
RepositoryPolicy policy = remoteRepositoryManager.getPolicy(session, group.repository, !snapshot, snapshot);
if (session.isNotFoundCachingEnabled() || session.isTransferErrorCachingEnabled()) {
UpdateCheck<Artifact, ArtifactTransferException> check = new UpdateCheck<Artifact, ArtifactTransferException>();
check.setItem(artifact);
check.setFile(download.getFile());
check.setFileValid(!download.isExistenceCheck());
check.setRepository(group.repository);
check.setPolicy(policy.getUpdatePolicy());
item.updateCheck = check;
updateCheckManager.checkArtifact(session, check);
if (!check.isRequired()) {
item.result.addException(check.getException());
continue;
}
}
download.setChecksumPolicy(policy.getChecksumPolicy());
download.setRepositories(item.repository.getMirroredRepositories());
downloads.add(download);
item.download = download;
}
if (downloads.isEmpty()) {
continue;
}
for (ArtifactDownload download : downloads) {
artifactDownloading(session, download.getTrace(), download.getArtifact(), group.repository);
}
try {
RepositoryConnector connector = remoteRepositoryManager.getRepositoryConnector(session, group.repository);
try {
connector.get(downloads, null);
} finally {
connector.close();
}
} catch (NoRepositoryConnectorException e) {
for (ArtifactDownload download : downloads) {
download.setException(new ArtifactTransferException(download.getArtifact(), group.repository, e));
}
}
for (ResolutionItem item : group.items) {
ArtifactDownload download = item.download;
if (download == null) {
continue;
}
if (item.updateCheck != null) {
item.updateCheck.setException(download.getException());
updateCheckManager.touchArtifact(session, item.updateCheck);
}
if (download.getException() == null) {
item.resolved.set(true);
item.result.setRepository(group.repository);
Artifact artifact = download.getArtifact();
try {
artifact = artifact.setFile(getFile(session, artifact, download.getFile()));
item.result.setArtifact(artifact);
} catch (ArtifactTransferException e) {
item.result.addException(e);
continue;
}
lrm.add(session, new LocalArtifactRegistration(artifact, group.repository, download.getSupportedContexts()));
artifactDownloaded(session, download.getTrace(), artifact, group.repository, null);
artifactResolved(session, download.getTrace(), artifact, group.repository, null);
} else {
item.result.addException(download.getException());
artifactDownloaded(session, download.getTrace(), download.getArtifact(), group.repository, download.getException());
}
}
}
for (ArtifactResult result : results) {
ArtifactRequest request = result.getRequest();
Artifact artifact = result.getArtifact();
if (artifact == null || artifact.getFile() == null) {
failures = true;
if (result.getExceptions().isEmpty()) {
Exception exception = new ArtifactNotFoundException(request.getArtifact(), null);
result.addException(exception);
}
RequestTrace trace = DefaultRequestTrace.newChild(request.getTrace(), request);
artifactResolved(session, trace, request.getArtifact(), null, result.getExceptions());
}
}
if (failures) {
throw new ArtifactResolutionException(results);
}
return results;
}
use of org.sonatype.aether.resolution.ArtifactResult in project sonatype-aether by sonatype.
the class DefaultRepositorySystem method resolveDependencies.
public DependencyResult resolveDependencies(RepositorySystemSession session, DependencyRequest request) throws DependencyResolutionException {
validateSession(session);
RequestTrace trace = DefaultRequestTrace.newChild(request.getTrace(), request);
DependencyResult result = new DependencyResult(request);
DependencyCollectionException dce = null;
ArtifactResolutionException are = null;
if (request.getRoot() != null) {
result.setRoot(request.getRoot());
} else if (request.getCollectRequest() != null) {
CollectResult collectResult;
try {
request.getCollectRequest().setTrace(trace);
collectResult = dependencyCollector.collectDependencies(session, request.getCollectRequest());
} catch (DependencyCollectionException e) {
dce = e;
collectResult = e.getResult();
}
result.setRoot(collectResult.getRoot());
result.setCollectExceptions(collectResult.getExceptions());
} else {
throw new IllegalArgumentException("dependency node or collect request missing");
}
ArtifactRequestBuilder builder = new ArtifactRequestBuilder(trace);
DependencyFilter filter = request.getFilter();
DependencyVisitor visitor = (filter != null) ? new FilteringDependencyVisitor(builder, filter) : builder;
visitor = new TreeDependencyVisitor(visitor);
result.getRoot().accept(visitor);
List<ArtifactRequest> requests = builder.getRequests();
List<ArtifactResult> results;
try {
results = artifactResolver.resolveArtifacts(session, requests);
} catch (ArtifactResolutionException e) {
are = e;
results = e.getResults();
}
result.setArtifactResults(results);
updateNodesWithResolvedArtifacts(results);
if (dce != null) {
throw new DependencyResolutionException(result, dce);
} else if (are != null) {
throw new DependencyResolutionException(result, are);
}
return result;
}
Aggregations