blob: 96ad6322ec6d6ae9b650900f7774a7daaec73be6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Benjamin Cabe <benjamin.cabe@anyware-tech.com> - bug 219513
*******************************************************************************/
package org.eclipse.pde.internal.ui.correction;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.pde.core.IBaseModel;
import org.eclipse.pde.core.build.IBuildEntry;
import org.eclipse.pde.internal.build.IPDEBuildConstants;
import org.eclipse.pde.internal.core.ICoreConstants;
import org.eclipse.pde.internal.core.builders.PDEMarkerFactory;
import org.eclipse.pde.internal.ui.PDEPlugin;
import org.eclipse.pde.internal.ui.PDEUIMessages;
import org.eclipse.ui.IMarkerResolution;
public class DeletePluginBaseResolution extends AbstractPDEMarkerResolution {
public DeletePluginBaseResolution(int type, IMarker marker) {
super(type, marker);
}
@Override
public String getLabel() {
return PDEUIMessages.RemoveUselessPluginFile_description;
}
@Override
public void run(final IMarker marker) {
try {
marker.delete();
marker.getResource().deleteMarkers(PDEMarkerFactory.MARKER_ID, false, IResource.DEPTH_ZERO);
marker.getResource().delete(true, new NullProgressMonitor());
//Since the plugin.xml is now deleted, remove the corresponding entry from the build.properties as well
IResource buildProperties = marker.getResource().getParent().findMember(IPDEBuildConstants.PROPERTIES_FILE);
if (buildProperties == null)
return;
IMarker removePluginEntryMarker = buildProperties.createMarker(String.valueOf(AbstractPDEMarkerResolution.REMOVE_TYPE));
removePluginEntryMarker.setAttribute(PDEMarkerFactory.BK_BUILD_ENTRY, IBuildEntry.BIN_INCLUDES);
removePluginEntryMarker.setAttribute(PDEMarkerFactory.BK_BUILD_TOKEN, ICoreConstants.PLUGIN_FILENAME_DESCRIPTOR);
IMarkerResolution removeBuildEntryResolution = new RemoveBuildEntryResolution(AbstractPDEMarkerResolution.REMOVE_TYPE, removePluginEntryMarker);
removeBuildEntryResolution.run(removePluginEntryMarker);
} catch (CoreException e) {
PDEPlugin.log(e);
}
}
@Override
protected void createChange(IBaseModel model) {
// handled by run
}
}