blob: 4c321d3644ff46fe0d7713e81cfa1197629c4470 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 compeople AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* compeople AG (Stefan Liebig) - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.artifact.optimizers;
import java.io.*;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.equinox.internal.p2.metadata.ArtifactKey;
import org.eclipse.equinox.internal.provisional.p2.artifact.repository.*;
import org.eclipse.equinox.internal.provisional.p2.artifact.repository.processing.ProcessingStepDescriptor;
import org.eclipse.equinox.internal.provisional.p2.metadata.IArtifactKey;
/**
* The <code>AbstractDeltaDiffStep</code> is an abstract processing step that
* retrieves a local artifact repository containing the serialized/encoded
* artifact key. It assumes that the artifact key is stored within the data property
* of the processing step descriptor and that is encoded with the <code>ArtifactKeySerializer</code>.
*/
public abstract class AbstractDeltaStep extends AbstractBufferingStep {
protected IArtifactKey key;
protected IArtifactRepository repository;
public AbstractDeltaStep() {
this(null);
}
protected AbstractDeltaStep(IArtifactRepository repository) {
super();
this.repository = repository;
}
public void initialize(ProcessingStepDescriptor descriptor, IArtifactDescriptor context) {
super.initialize(descriptor, context);
readArtifactKey(descriptor);
}
protected void readArtifactKey(ProcessingStepDescriptor descriptor) {
try {
key = ArtifactKey.parse(descriptor.getData());
} catch (IllegalArgumentException e) {
setStatus(new Status(IStatus.ERROR, Activator.ID, "Predecessor artifact key for delta could not be deserialized. Serialized key is " + descriptor.getData(), e));
}
}
protected File fetchPredecessor(ArtifactDescriptor descriptor) {
if (repository instanceof IFileArtifactRepository)
return ((IFileArtifactRepository) repository).getArtifactFile(descriptor);
File result = null;
OutputStream resultStream = null;
try {
try {
result = File.createTempFile(PREDECESSOR_ROOT, JAR_SUFFIX);
resultStream = new BufferedOutputStream(new FileOutputStream(result));
setStatus(repository.getArtifact(descriptor, resultStream, getProgressMonitor()));
return result;
} finally {
if (resultStream != null)
resultStream.close();
}
} catch (IOException e) {
}
return null;
}
}