blob: 3d549af494bfa1ac5dba749bf9c4edb0ab0c75e6 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.portfolio.file.resources;
import java.io.File;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.ftask.producer.invocation.ITaskProduction;
/**
* @author Matthieu Helleboid
*
*/
public class DeleteFileTask implements ITaskProduction {
public void preExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
// Nothing to do
}
public void doExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
String filePath = productionContext.getInputValue("filePath", String.class); //$NON-NLS-1$
try {
File file = new File(filePath);
if (file.exists()) {
file.delete();
}
} catch (Throwable t) {
if (t instanceof CoreException) {
throw new InvocationException(t);
}
throw new InvocationException(new CoreException(EGFFileResourcesActivator.getDefault().newStatus(IStatus.ERROR, "Unexpected Exception", t))); //$NON-NLS-1$
}
}
public void postExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
// Nothing to do
}
}