blob: 1d09c9a85ee670badbf2e8fdf471b1eb15fd4110 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 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.ByteArrayInputStream;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.egf.common.helper.FileHelper;
import org.eclipse.egf.core.producer.InvocationException;
import org.eclipse.egf.ftask.producer.context.ITaskProductionContext;
import org.eclipse.egf.ftask.producer.invocation.ITaskProduction;
/**
* @author Benoit Langlois
*
*/
public class WriteFileTask implements ITaskProduction {
public void preExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
// Nothing to do
}
public void doExecute(ITaskProductionContext productionContext, IProgressMonitor monitor) throws InvocationException {
String contents = productionContext.getInputValue(FileConstants.CONTENTS_NAME_CONTRACT, String.class);
String projectName = productionContext.getInputValue(FileConstants.PROJECT_NAME_CONTRACT, String.class);
String folder = productionContext.getInputValue(FileConstants.FOLDER_CONTRACT, String.class);
String fileName = productionContext.getInputValue(FileConstants.FILE_NAME_CONTRACT, String.class);
Boolean appendMode = productionContext.getInputValue(FileConstants.APPEND_MODE_CONTRACT, Boolean.class);
ByteArrayInputStream fileContents = new ByteArrayInputStream(contents.getBytes());
try {
IFile file = FileUtil.getNewFile(projectName, folder, fileName);
if (file.exists()) {
if (appendMode == true) {
file.appendContents(fileContents, false, false, monitor);
} else {
file.setContents(fileContents, true, false, monitor);
}
} else {
FileHelper.createContainers(monitor, file);
file.create(fileContents, true, monitor);
}
} 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
}
}