Search in sources :

Example 16 with IArtifactKey

use of org.eclipse.equinox.p2.metadata.IArtifactKey in project tycho by eclipse.

the class ArtifactRepositoryBaseImpl method internalRemoveDescriptor.

@Override
protected final void internalRemoveDescriptor(IArtifactDescriptor descriptor) {
    IArtifactDescriptor comparableDescriptor = getComparableDescriptor(descriptor);
    descriptors.remove(comparableDescriptor);
    IArtifactKey artifactKey = comparableDescriptor.getArtifactKey();
    Set<ArtifactDescriptorT> descriptorsForKey = descriptorsMap.get(artifactKey);
    if (descriptorsForKey != null) {
        descriptorsForKey.remove(comparableDescriptor);
        if (descriptorsForKey.isEmpty()) {
            descriptorsMap.remove(artifactKey);
        }
    }
}
Also used : IArtifactDescriptor(org.eclipse.equinox.p2.repository.artifact.IArtifactDescriptor) IArtifactKey(org.eclipse.equinox.p2.metadata.IArtifactKey)

Example 17 with IArtifactKey

use of org.eclipse.equinox.p2.metadata.IArtifactKey in project tycho by eclipse.

the class BaselineServiceImpl method getProjectBaseline.

@Override
public Map<String, IP2Artifact> getProjectBaseline(Collection<MavenRepositoryLocation> baselineLocations, Map<String, IP2Artifact> reactor, File target) {
    // baseline repository may contain artifacts with the same id/version but different contents
    // compared to what is installed (or cached) locally.
    // current local repository layout does not track per-repository artifacts and does not allow
    // multiple different artifacts with same id/version.
    CompositeMetadataRepository baselineUnits;
    CompositeArtifactRepository baselineArtifacts;
    try {
        IProvisioningAgent remoteAgent = remoteAgentManager.getProvisioningAgent();
        IRepositoryIdManager remoteRepositoryIdManager = (IRepositoryIdManager) remoteAgent.getService(IRepositoryIdManager.SERVICE_NAME);
        IMetadataRepositoryManager remoteMetadataRepositoryManager = (IMetadataRepositoryManager) remoteAgent.getService(IMetadataRepositoryManager.SERVICE_NAME);
        IArtifactRepositoryManager remoteArtifactRepositoryManager = (IArtifactRepositoryManager) remoteAgent.getService(IArtifactRepositoryManager.SERVICE_NAME);
        baselineUnits = CompositeMetadataRepository.createMemoryComposite(remoteAgent);
        baselineArtifacts = CompositeArtifactRepository.createMemoryComposite(remoteAgent);
        for (MavenRepositoryLocation location : baselineLocations) {
            URI url = location.getURL();
            try {
                remoteRepositoryIdManager.addMapping(location.getId(), url);
                // TODO offline mode https://bugs.eclipse.org/bugs/show_bug.cgi?id=337022
                // not strictly necessary, but makes sure metadata download is visible in the console/log
                remoteMetadataRepositoryManager.loadRepository(url, monitor);
                remoteArtifactRepositoryManager.loadRepository(url, monitor);
                baselineUnits.addChild(url);
                baselineArtifacts.addChild(url);
            } catch (ProvisionException e) {
                // baseline repository may not exist yet
                mavenContext.getLogger().warn(e.getMessage(), e);
            }
        }
    } catch (ProvisionException e) {
        throw new RuntimeException(e);
    }
    Map<String, IP2Artifact> result = new LinkedHashMap<>();
    for (Map.Entry<String, IP2Artifact> reactorArtifact : reactor.entrySet()) {
        IArtifactDescriptor descriptor = (IArtifactDescriptor) reactorArtifact.getValue().getArtifactDescriptor();
        IArtifactDescriptor baselineDescriptor = getBaselineDescriptor(baselineArtifacts, descriptor);
        if (baselineDescriptor == null) {
            continue;
        }
        IArtifactKey baslineKey = baselineDescriptor.getArtifactKey();
        String format = baselineDescriptor.getProperty(IArtifactDescriptor.FORMAT);
        File baselineArtifact = new File(target, baslineKey.getClassifier() + "/" + baslineKey.getId() + "/" + baslineKey.getVersion() + (format != null ? "." + format : ""));
        try {
            baselineArtifact.getParentFile().mkdirs();
            OutputStream os = new BufferedOutputStream(new FileOutputStream(baselineArtifact));
            try {
                IStatus status = baselineArtifacts.getRawArtifact(baselineDescriptor, os, monitor);
                if (status.matches(IStatus.ERROR | IStatus.CANCEL)) {
                    String repository = baselineDescriptor.getRepository().getLocation().toString();
                    String artifactId = baselineDescriptor.getArtifactKey().getId();
                    String artifactVersion = baselineDescriptor.getArtifactKey().getVersion().toString();
                    String statusMessage = StatusTool.toLogMessage(status);
                    throw new RuntimeException(String.format("Error trying to download %s version %s from %s:\n%s", artifactId, artifactVersion, repository, statusMessage), StatusTool.findException(status));
                }
            } finally {
                try {
                    os.close();
                } catch (IOException e) {
                // ignored
                }
            }
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
        List<IInstallableUnit> units = new ArrayList<>();
        for (Object _unit : reactorArtifact.getValue().getInstallableUnits()) {
            IInstallableUnit unit = (IInstallableUnit) _unit;
            IInstallableUnit baselineUnit = getBaselineUnit(baselineUnits, unit.getId(), unit.getVersion());
            if (baselineUnit != null) {
                units.add(baselineUnit);
            }
        }
        result.put(reactorArtifact.getKey(), new P2Artifact(baselineArtifact, units, descriptor));
    }
    return !result.isEmpty() ? result : null;
}
Also used : IMetadataRepositoryManager(org.eclipse.equinox.p2.repository.metadata.IMetadataRepositoryManager) IStatus(org.eclipse.core.runtime.IStatus) CompositeArtifactRepository(org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository) BufferedOutputStream(java.io.BufferedOutputStream) OutputStream(java.io.OutputStream) FileOutputStream(java.io.FileOutputStream) ArrayList(java.util.ArrayList) URI(java.net.URI) LinkedHashMap(java.util.LinkedHashMap) IRepositoryIdManager(org.eclipse.tycho.p2.remote.IRepositoryIdManager) ProvisionException(org.eclipse.equinox.p2.core.ProvisionException) IArtifactKey(org.eclipse.equinox.p2.metadata.IArtifactKey) CompositeMetadataRepository(org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository) IInstallableUnit(org.eclipse.equinox.p2.metadata.IInstallableUnit) BufferedOutputStream(java.io.BufferedOutputStream) IArtifactDescriptor(org.eclipse.equinox.p2.repository.artifact.IArtifactDescriptor) IProvisioningAgent(org.eclipse.equinox.p2.core.IProvisioningAgent) IOException(java.io.IOException) MavenRepositoryLocation(org.eclipse.tycho.core.resolver.shared.MavenRepositoryLocation) IArtifactRepositoryManager(org.eclipse.equinox.p2.repository.artifact.IArtifactRepositoryManager) FileOutputStream(java.io.FileOutputStream) IP2Artifact(org.eclipse.tycho.p2.metadata.IP2Artifact) IP2Artifact(org.eclipse.tycho.p2.metadata.IP2Artifact) P2Artifact(org.eclipse.tycho.p2.impl.publisher.P2Artifact) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) File(java.io.File)

Example 18 with IArtifactKey

use of org.eclipse.equinox.p2.metadata.IArtifactKey in project tycho by eclipse.

the class P2ResolverImpl method addUnit.

private void addUnit(DefaultP2ResolutionResult result, IInstallableUnit iu, ReactorProject currentProject, Set<String> missingArtifacts) {
    if (currentProjectUnits.contains(iu)) {
        addReactorProject(result, currentProject.getIdentities(), iu);
        return;
    }
    ReactorProjectIdentities otherProject = context.getOriginalReactorProjectMap().get(iu);
    if (otherProject != null) {
        addReactorProject(result, otherProject, iu);
        return;
    }
    IArtifactFacade mavenArtifact = context.getOriginalMavenArtifactMap().get(iu);
    if (mavenArtifact != null) {
        addExternalMavenArtifact(result, mavenArtifact, iu);
        return;
    }
    for (IArtifactKey key : iu.getArtifacts()) {
        // this downloads artifacts if necessary; TODO parallelize download?
        File artifactLocation = context.getLocalArtifactFile(key);
        if (artifactLocation == null) {
            missingArtifacts.add(key.toString());
        } else {
            addArtifactFile(result, iu, key, artifactLocation);
        }
    }
}
Also used : IArtifactFacade(org.eclipse.tycho.p2.metadata.IArtifactFacade) IArtifactKey(org.eclipse.equinox.p2.metadata.IArtifactKey) ReactorProjectIdentities(org.eclipse.tycho.ReactorProjectIdentities) File(java.io.File)

Example 19 with IArtifactKey

use of org.eclipse.equinox.p2.metadata.IArtifactKey in project tycho by eclipse.

the class VerifierServiceImpl method verifyReferencedArtifactsExist.

private boolean verifyReferencedArtifactsExist(final IMetadataRepository metadata, final IArtifactRepository artifactRepository, MavenLogger logger) {
    final IQueryResult<IInstallableUnit> collector = metadata.query(QueryUtil.ALL_UNITS, monitor);
    boolean valid = true;
    for (Iterator<IInstallableUnit> iterator = collector.iterator(); iterator.hasNext(); ) {
        IInstallableUnit iu = iterator.next();
        final Collection<IArtifactKey> artifacts = iu.getArtifacts();
        for (IArtifactKey key : artifacts) {
            valid &= verifyArtifactExists(key, artifactRepository, logger);
        }
    }
    return valid;
}
Also used : IArtifactKey(org.eclipse.equinox.p2.metadata.IArtifactKey) IInstallableUnit(org.eclipse.equinox.p2.metadata.IInstallableUnit)

Example 20 with IArtifactKey

use of org.eclipse.equinox.p2.metadata.IArtifactKey in project tycho by eclipse.

the class InstallableUnitUtil method createIUArtifact.

public static IInstallableUnit createIUArtifact(String id, String version, String artifactId, String artifactVersion) {
    InstallableUnitDescription description = createIuDescription(id, version);
    description.setArtifacts(new IArtifactKey[] { new ArtifactKey("type", artifactId, Version.create(artifactVersion)) });
    return MetadataFactory.createInstallableUnit(description);
}
Also used : InstallableUnitDescription(org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitDescription) ArtifactKey(org.eclipse.equinox.internal.p2.metadata.ArtifactKey) IArtifactKey(org.eclipse.equinox.p2.metadata.IArtifactKey)

Aggregations

IArtifactKey (org.eclipse.equinox.p2.metadata.IArtifactKey)13 IArtifactDescriptor (org.eclipse.equinox.p2.repository.artifact.IArtifactDescriptor)11 File (java.io.File)6 IStatus (org.eclipse.core.runtime.IStatus)6 IInstallableUnit (org.eclipse.equinox.p2.metadata.IInstallableUnit)5 BufferedOutputStream (java.io.BufferedOutputStream)3 FileOutputStream (java.io.FileOutputStream)3 IOException (java.io.IOException)3 OutputStream (java.io.OutputStream)3 Status (org.eclipse.core.runtime.Status)3 ArtifactDescriptor (org.eclipse.equinox.p2.repository.artifact.spi.ArtifactDescriptor)3 Test (org.junit.Test)3 ArtifactKey (org.eclipse.equinox.internal.p2.metadata.ArtifactKey)2 ProvisionException (org.eclipse.equinox.p2.core.ProvisionException)2 InstallableUnitDescription (org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitDescription)2 IArtifactRepository (org.eclipse.equinox.p2.repository.artifact.IArtifactRepository)2 IProcessingStepDescriptor (org.eclipse.equinox.p2.repository.artifact.IProcessingStepDescriptor)2 ProcessingStepDescriptor (org.eclipse.equinox.p2.repository.artifact.spi.ProcessingStepDescriptor)2 P2Artifact (org.eclipse.tycho.p2.impl.publisher.P2Artifact)2 IArtifactFacade (org.eclipse.tycho.p2.metadata.IArtifactFacade)2