blob: 2f90c6aaaafe745db91d487dca2655179254c6db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.eclipse.actions;
import java.io.File;
import java.io.IOException;
import java.util.Map;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.equinox.internal.p2.touchpoint.eclipse.*;
import org.eclipse.equinox.internal.provisional.p2.engine.IProfile;
import org.eclipse.equinox.internal.provisional.p2.engine.ProvisioningAction;
import org.eclipse.equinox.internal.provisional.p2.metadata.IArtifactKey;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
import org.eclipse.osgi.util.NLS;
public class AddSourceBundleAction extends ProvisioningAction {
public static final String ID = "addSourceBundle"; //$NON-NLS-1$
public IStatus execute(Map parameters) {
return AddSourceBundleAction.addSourceBundle(parameters);
}
public IStatus undo(Map parameters) {
return RemoveSourceBundleAction.removeSourceBundle(parameters);
}
public static IStatus addSourceBundle(Map parameters) {
IProfile profile = (IProfile) parameters.get(ActionConstants.PARM_PROFILE);
IInstallableUnit iu = (IInstallableUnit) parameters.get(EclipseTouchpoint.PARM_IU);
SourceManipulator manipulator = (SourceManipulator) parameters.get(EclipseTouchpoint.PARM_SOURCE_BUNDLES);
String bundleId = (String) parameters.get(ActionConstants.PARM_BUNDLE);
if (bundleId == null)
return Util.createError(NLS.bind(Messages.parameter_not_set, ActionConstants.PARM_BUNDLE, ID));
IArtifactKey[] artifacts = iu.getArtifacts();
if (artifacts == null || artifacts.length == 0)
return Util.createError(NLS.bind(Messages.iu_contains_no_arifacts, iu));
IArtifactKey artifactKey = null;
for (int i = 0; i < artifacts.length; i++) {
if (artifacts[i].toString().equals(bundleId)) {
artifactKey = artifacts[i];
break;
}
}
if (artifactKey == null)
throw new IllegalArgumentException(NLS.bind(Messages.no_matching_artifact, bundleId));
File bundleFile = Util.getArtifactFile(artifactKey, profile);
if (bundleFile == null || !bundleFile.exists())
return Util.createError(NLS.bind(Messages.artifact_file_not_found, artifactKey));
try {
manipulator.addBundle(bundleFile, artifactKey.getId(), artifactKey.getVersion());
} catch (IOException e) {
return Util.createError(NLS.bind(Messages.cannot_configure_source_bundle, artifactKey));
}
return Status.OK_STATUS;
}
}