blob: bbf59426cda460d9b42222cdfde5386d502212cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.touchpoint.natives;
import java.io.File;
import java.net.URL;
import java.util.*;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.p2.core.helpers.ServiceHelper;
import org.eclipse.equinox.internal.p2.engine.Profile;
import org.eclipse.equinox.internal.provisional.p2.artifact.repository.*;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.core.location.AgentLocation;
import org.eclipse.equinox.internal.provisional.p2.core.repository.IRepository;
import org.eclipse.equinox.internal.provisional.p2.engine.*;
import org.eclipse.equinox.internal.provisional.p2.metadata.*;
import org.osgi.framework.Version;
public class NativeTouchpoint extends Touchpoint {
private static final String ID = "org.eclipse.equinox.p2.touchpoint.natives"; //$NON-NLS-1$
protected static IStatus createError(String message) {
return new Status(IStatus.ERROR, ID, message);
}
public ProvisioningAction getAction(String actionId) {
if (actionId.equals("collect")) {
return new ProvisioningAction() {
public IStatus execute(Map parameters) {
IProfile profile = (IProfile) parameters.get("profile");
InstallableUnitOperand operand = (InstallableUnitOperand) parameters.get("operand");
try {
IArtifactRequest[] requests = collect(operand.second(), profile);
Collection artifactRequests = (Collection) parameters.get("artifactRequests");
artifactRequests.add(requests);
} catch (ProvisionException e) {
return e.getStatus();
}
return Status.OK_STATUS;
}
public IStatus undo(Map parameters) {
// nothing to do for now
return Status.OK_STATUS;
}
};
}
if (actionId.equals("unzip")) {
return new ProvisioningAction() {
public IStatus execute(Map parameters) {
return unzip(parameters);
}
public IStatus undo(Map parameters) {
return cleanupzip(parameters);
}
};
}
if (actionId.equals("cleanupzip")) {
return new ProvisioningAction() {
public IStatus execute(Map parameters) {
return cleanupzip(parameters);
}
public IStatus undo(Map parameters) {
return unzip(parameters);
}
};
}
if (actionId.equals("chmod")) {
return new ProvisioningAction() {
public IStatus execute(Map parameters) {
String targetDir = (String) parameters.get("targetDir");
if (targetDir == null)
return createError("The \"targetDir\" parameter was not set in the \"chmod\" action.");
String targetFile = (String) parameters.get("targetFile");
if (targetFile == null)
return createError("The \"targetFile\" parameter was not set in the \"chmod\" action.");
String permissions = (String) parameters.get("permissions");
if (permissions == null)
return createError("The \"permissions\" parameter was not set in the \"chmod\" action");
new Permissions().chmod(targetDir, targetFile, permissions);
return Status.OK_STATUS;
}
public IStatus undo(Map parameters) {
//TODO: implement undo ??
return Status.OK_STATUS;
}
};
}
return null;
}
public TouchpointType getTouchpointType() {
return MetadataFactory.createTouchpointType("org.eclipse.equinox.p2.native", new Version(1, 0, 0));
}
IArtifactRequest[] collect(IInstallableUnit installableUnit, IProfile profile) throws ProvisionException {
IArtifactKey[] toDownload = installableUnit.getArtifacts();
if (toDownload == null)
return new IArtifactRequest[0];
IArtifactRepository destination = getDownloadCacheRepo();
IArtifactRequest[] requests = new IArtifactRequest[toDownload.length];
int count = 0;
for (int i = 0; i < toDownload.length; i++) {
//TODO Here there are cases where the download is not necessary again because what needs to be done is just a configuration step
requests[count++] = getArtifactRepositoryManager().createMirrorRequest(toDownload[i], destination);
}
if (requests.length == count)
return requests;
IArtifactRequest[] result = new IArtifactRequest[count];
System.arraycopy(requests, 0, result, 0, count);
return result;
}
private String getInstallFolder(IProfile profile) {
return profile.getProperty(IProfile.PROP_INSTALL_FOLDER);
}
private static AgentLocation getAgentLocation() {
return (AgentLocation) ServiceHelper.getService(Activator.getContext(), AgentLocation.class.getName());
}
static private IArtifactRepositoryManager getArtifactRepositoryManager() {
return (IArtifactRepositoryManager) ServiceHelper.getService(Activator.getContext(), IArtifactRepositoryManager.class.getName());
}
static private IFileArtifactRepository getDownloadCacheRepo() throws ProvisionException {
URL location = getDownloadCacheLocation();
if (location == null)
throw new IllegalStateException("Could not obtain the download cache location.");
IArtifactRepositoryManager manager = getArtifactRepositoryManager();
if (manager == null)
throw new IllegalStateException("The artifact repository manager could not be found.");
IArtifactRepository repository;
try {
repository = manager.loadRepository(location, null);
} catch (ProvisionException e) {
// the download cache doesn't exist or couldn't be read. Create new cache.
String repositoryName = location + " - Agent download cache"; //$NON-NLS-1$
repository = manager.createRepository(location, repositoryName, IArtifactRepositoryManager.TYPE_SIMPLE_REPOSITORY);
manager.addRepository(repository.getLocation());
repository.setProperty(IRepository.PROP_SYSTEM, Boolean.TRUE.toString());
}
IFileArtifactRepository downloadCache = (IFileArtifactRepository) repository.getAdapter(IFileArtifactRepository.class);
if (downloadCache == null)
throw new ProvisionException("Agent download cache not writeable: " + location);
return downloadCache;
}
static private URL getDownloadCacheLocation() {
AgentLocation location = getAgentLocation();
return (location != null ? location.getArtifactRepositoryURL() : null);
}
public IStatus initializePhase(IProgressMonitor monitor, IProfile profile, String phaseId, Map touchpointParameters) {
touchpointParameters.put("installFolder", getInstallFolder(profile));
return null;
}
IStatus unzip(Map parameters) {
String source = (String) parameters.get("source");
if (source == null)
return createError("The \"source\" parameter was not set in the \"unzip\" action.");
String originalSource = source;
String target = (String) parameters.get("target");
if (target == null)
return createError("The \"target\" parameter was not set in the \"unzip\" action.");
IInstallableUnit iu = (IInstallableUnit) parameters.get("iu");
Profile profile = (Profile) parameters.get("profile");
if (source.equals("@artifact")) {
//TODO: fix wherever this occurs -- investigate as this is probably not desired
if (iu.getArtifacts() == null || iu.getArtifacts().length == 0)
return Status.OK_STATUS;
IArtifactKey artifactKey = iu.getArtifacts()[0];
IFileArtifactRepository downloadCache;
try {
downloadCache = getDownloadCacheRepo();
} catch (ProvisionException e) {
return e.getStatus();
}
File fileLocation = downloadCache.getArtifactFile(artifactKey);
if ((fileLocation == null) || !fileLocation.exists())
return createError("The artifact for " + artifactKey + " is not available");
source = fileLocation.getAbsolutePath();
}
File[] unzippedFiles = new Zip().unzip(source, target, null);
StringBuffer unzippedFileNameBuffer = new StringBuffer();
for (int i = 0; i < unzippedFiles.length; i++)
unzippedFileNameBuffer.append(unzippedFiles[i].getAbsolutePath()).append("|");
profile.setInstallableUnitProperty(iu, "unzipped" + "|" + originalSource + "|" + target, unzippedFileNameBuffer.toString());
return Status.OK_STATUS;
}
protected IStatus cleanupzip(Map parameters) {
String source = (String) parameters.get("source");
if (source == null)
return createError("The \"source\" parameter was not set in the \"cleanupzip\" action.");
String target = (String) parameters.get("target");
if (target == null)
return createError("The \"target\" parameter was not set in the \"cleanupzip\" action.");
IInstallableUnit iu = (IInstallableUnit) parameters.get("iu");
IProfile profile = (IProfile) parameters.get("profile");
String unzipped = profile.getInstallableUnitProperty(iu, "unzipped" + "|" + source + "|" + target);
if (unzipped == null)
return Status.OK_STATUS;
StringTokenizer tokenizer = new StringTokenizer(unzipped, "|");
List directories = new ArrayList();
while (tokenizer.hasMoreTokens()) {
String fileName = tokenizer.nextToken();
File file = new File(fileName);
if (!file.exists())
continue;
if (file.isDirectory())
directories.add(file);
else
file.delete();
}
for (Iterator it = directories.iterator(); it.hasNext();) {
File directory = (File) it.next();
directory.delete();
}
return Status.OK_STATUS;
}
}